Fix bug with non-lower case color names in HTML.
[htmlpurifier.git] / library / HTMLPurifier / AttrDef / HTML / Color.php
blobe02abb0759c3eb2d2973f1373ff677e9b6b811e7
1 <?php
3 /**
4 * Validates a color according to the HTML spec.
5 */
6 class HTMLPurifier_AttrDef_HTML_Color extends HTMLPurifier_AttrDef
9 public function validate($string, $config, $context) {
11 static $colors = null;
12 if ($colors === null) $colors = $config->get('Core.ColorKeywords');
14 $string = trim($string);
16 if (empty($string)) return false;
17 $lower = strtolower($string);
18 if (isset($colors[$lower])) return $colors[$lower];
19 if ($string[0] === '#') $hex = substr($string, 1);
20 else $hex = $string;
22 $length = strlen($hex);
23 if ($length !== 3 && $length !== 6) return false;
24 if (!ctype_xdigit($hex)) return false;
25 if ($length === 3) $hex = $hex[0].$hex[0].$hex[1].$hex[1].$hex[2].$hex[2];
27 return "#$hex";
33 // vim: et sw=4 sts=4