Lines Matching refs:property

164 var $property = '';  variable in csstidy
602 if(($string{$i} == ':' || $string{$i} == '=') && $this->property != '')
605 … if(csstidy::property_is_valid($this->property) || !$this->get_cfg('discard_invalid_properties')) {
606 $this->_add_token(PROPERTY, $this->property);
609 elseif($string{$i} == '/' && @$string{$i+1} == '*' && $this->property == '')
621 $this->property = '';
625 $this->property = '';
629 $this->property .= $this->_unicode($string,$i);
634 $this->property .= $string{$i};
704 $this->property = strtolower($this->property);
718 $valid = csstidy::property_is_valid($this->property);
721 … $this->css_add_property($this->at,$this->selector,$this->property,$this->value);
729 $this->log('Removed invalid property: '.$this->property,'Warning');
733 …log('Invalid property in '.strtoupper($this->get_cfg('css_level')).': '.$this->property,'Warning');
737 $this->property = '';
872 * @param string $property
877 function css_add_property($media,$selector,$property,$new_val) argument
884 if(isset($this->css[$media][$selector][$property]))
886 …$media][$selector][$property]) && csstidy::is_important($new_val)) || !csstidy::is_important($this…
888 unset($this->css[$media][$selector][$property]);
889 $this->css[$media][$selector][$property] = trim($new_val);
894 $this->css[$media][$selector][$property] = trim($new_val);
908 foreach($css_add as $property => $value)
910 $this->css_add_property($media,$selector,$property,$value,false);
975 * @param string $property
980 function property_is_valid($property) { argument
982 …return (isset($all_properties[$property]) && strpos($all_properties[$property],strtoupper($this->g…