Home
last modified time | relevance | path

Searched refs:non_negative (Results 1 – 2 of 2) sorted by relevance

/plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/
DNumber.php13 protected $non_negative = false; variable in HTMLPurifier_AttrDef_CSS_Number
16 * @param bool $non_negative indicates whether negatives are forbidden
18 public function __construct($non_negative = false) argument
20 $this->non_negative = $non_negative;
45 if ($this->non_negative) {
DPercentage.php16 * @param bool $non_negative Whether to forbid negative values
18 public function __construct($non_negative = false) argument
20 $this->number_def = new HTMLPurifier_AttrDef_CSS_Number($non_negative);