CSSPropertyStringSet(false,
false,
array('inherit' => CSS_PROPERTY_INHERIT,
'visible' => VISIBILITY_VISIBLE,
'hidden' => VISIBILITY_HIDDEN,
'collapse' => VISIBILITY_COLLAPSE));
}
function default_value() { return VISIBILITY_VISIBLE; }
function getPropertyCode() {
return CSS_VISIBILITY;
}
function getPropertyName() {
return 'visibility';
}
}
CSS::register_css_property(new CSSVisibility);
?>