Index: third_party/WebKit/Source/core/css/parser/CSSParserFastPaths.cpp |
diff --git a/third_party/WebKit/Source/core/css/parser/CSSParserFastPaths.cpp b/third_party/WebKit/Source/core/css/parser/CSSParserFastPaths.cpp |
index 4bbd282657b298752a944fa2e222cc98cb4abf42..0eb51bbfcd74f0e169fc8111791eea4d38f82042 100644 |
--- a/third_party/WebKit/Source/core/css/parser/CSSParserFastPaths.cpp |
+++ b/third_party/WebKit/Source/core/css/parser/CSSParserFastPaths.cpp |
@@ -443,7 +443,7 @@ CSSValue* CSSParserFastPaths::parseColor(const String& string, CSSParserMode par |
{ |
ASSERT(!string.isEmpty()); |
CSSValueID valueID = cssValueKeywordID(string); |
- if (CSSPropertyParser::isColorKeyword(valueID)) { |
+ if (isColorKeyword(valueID)) { |
if (!isValueAllowedInMode(valueID, parserMode)) |
return nullptr; |
return CSSPrimitiveValue::createIdentifier(valueID); |