1<?php
2
3class CSSValue {
4  /**
5   * Check if some subproperties should be inherited;
6   * inherit calculated values from the parent box
7   */
8  function doInherit($state) {
9    // Generic method; do nothing
10  }
11
12  function clearDefaultFlags(&$state) {
13    // Generic method; do nothing
14  }
15}
16
17?>