Files
luos/thirdparty/html2ps_pdf/css.min-width.inc.php
Paula Quispe 9eb7d6cac2 HOR-2689
2017-08-03 17:00:30 -04:00

26 lines
517 B
PHP

<?php
// $Header: /cvsroot/html2ps/css.min-width.inc.php,v 1.1 2006/09/07 18:38:14 Konstantin Exp $
class CSSMinWidth extends CSSSubFieldProperty {
function CSSMinWidth(&$owner, $field) {
$this->CSSSubFieldProperty($owner, $field);
}
function getPropertyCode() {
return CSS_MIN_WIDTH;
}
function getPropertyName() {
return 'min-width';
}
function parse($value) {
if ($value == 'inherit') {
return CSS_PROPERTY_INHERIT;
}
return Value::fromString($value);
}
}
?>