Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<?php
2
 
3
class 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
?>