1<?php
2
3require_once(HTML2PS_DIR.'value.generic.percentage.php');
4
5class ValueMaxHeight extends CSSValuePercentage {
6  function fromString($value) {
7    return CSSValuePercentage::_fromString($value, new ValueMaxHeight);
8  }
9
10  function &copy() {
11    $value =& parent::_copy(new ValueMaxHeight);
12    return $value;
13  }
14}
15
16?>