| Index: Source/core/css/parser/CSSParser.cpp
|
| diff --git a/Source/core/css/parser/CSSParser.cpp b/Source/core/css/parser/CSSParser.cpp
|
| index 88cefa6f0b33bf2cd13a04e9755072e36f695c5a..a67f8ab8dedb352a7717278a1b68fa0746a61876 100644
|
| --- a/Source/core/css/parser/CSSParser.cpp
|
| +++ b/Source/core/css/parser/CSSParser.cpp
|
| @@ -109,7 +109,7 @@ bool CSSParser::parseColor(RGBA32& color, const String& string, bool strict)
|
| return false;
|
|
|
| // First try creating a color specified by name, rgba(), rgb() or "#" syntax.
|
| - if (CSSPropertyParser::fastParseColor(color, string, strict))
|
| + if (CSSParserFastPaths::parseColorAsRGBA32(color, string, !strict))
|
| return true;
|
|
|
| // In case the fast-path parser didn't understand the color, try the full parser.
|
|
|