Index: Source/core/css/parser/CSSPropertyParser.cpp |
diff --git a/Source/core/css/parser/CSSPropertyParser.cpp b/Source/core/css/parser/CSSPropertyParser.cpp |
index c557b59ae6d61a6f7f0695165f1351342f490ec3..599d299e6335f7d45ddb302ded51cdd55ccf01a8 100644 |
--- a/Source/core/css/parser/CSSPropertyParser.cpp |
+++ b/Source/core/css/parser/CSSPropertyParser.cpp |
@@ -5352,7 +5352,6 @@ bool CSSPropertyParser::parseColorFromValue(CSSParserValue* value, RGBA32& c, bo |
if (acceptQuirkyColors && value->unit == CSSPrimitiveValue::CSS_NUMBER |
&& value->fValue >= 0. && value->fValue < 1000000.) { |
String str = String::format("%06d", static_cast<int>((value->fValue+.5))); |
- // FIXME: This should be strict parsing for SVG as well. |
if (!fastParseColor(c, str, !acceptQuirkyColors)) |
return false; |
} else if (acceptQuirkyColors && value->unit == CSSParserValue::DimensionList) { |