Home
last modified time | relevance | path

Searched refs:HTMLPurifier_Length (Results 1 – 3 of 3) sorted by relevance

/plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/
DLength.php20 …* @param HTMLPurifier_Length|string $min Minimum length, or null for no bound. String is also acce…
21 …* @param HTMLPurifier_Length|string $max Maximum length, or null for no bound. String is also acce…
25 $this->min = $min !== null ? HTMLPurifier_Length::make($min) : null;
26 $this->max = $max !== null ? HTMLPurifier_Length::make($max) : null;
50 $length = HTMLPurifier_Length::make($string);
/plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/
DLength.php7 class HTMLPurifier_Length class
51 * @return HTMLPurifier_Length
56 if ($s instanceof HTMLPurifier_Length) {
65 return new HTMLPurifier_Length($n, $unit);
84 if (!isset(HTMLPurifier_Length::$allowedUnits[$this->unit])) {
141 * @param HTMLPurifier_Length $l
DUnitConverter.php65 * @param HTMLPurifier_Length $length
70 * @return HTMLPurifier_Length|bool
92 return new HTMLPurifier_Length('0', false);
184 return new HTMLPurifier_Length($n, $unit);