| Index: Source/core/css/parser/CSSParserValues.cpp
|
| diff --git a/Source/core/css/parser/CSSParserValues.cpp b/Source/core/css/parser/CSSParserValues.cpp
|
| index db8e02a3bc30aeca70b74a530a96c50d37247d37..29cc57c6126c8ad4bd72d13ed4b7dee04209adb8 100644
|
| --- a/Source/core/css/parser/CSSParserValues.cpp
|
| +++ b/Source/core/css/parser/CSSParserValues.cpp
|
| @@ -162,15 +162,6 @@ CSSParserValueList::CSSParserValueList(CSSParserTokenRange range, bool& usesRemU
|
| value.isInt = (token.numericValueType() == IntegerValueType);
|
| break;
|
| case HashToken:
|
| - // FIXME: Move this logic to the property parser
|
| - // This check prevents us from allowing #red and similar
|
| - for (size_t i = 0; i < token.value().length(); ++i) {
|
| - if (!isASCIIHexDigit(token.value()[i])) {
|
| - destroyAndClear();
|
| - return;
|
| - }
|
| - }
|
| - // fallthrough
|
| case StringToken:
|
| case UnicodeRangeToken:
|
| case UrlToken: {
|
|
|