| Index: third_party/WebKit/Source/core/css/parser/CSSVariableParser.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/parser/CSSVariableParser.cpp b/third_party/WebKit/Source/core/css/parser/CSSVariableParser.cpp
|
| index c79b197a622e7f2b6505e0335184cccfd011e330..7cd474d33fe7a59601a491bd30e1937504877a69 100644
|
| --- a/third_party/WebKit/Source/core/css/parser/CSSVariableParser.cpp
|
| +++ b/third_party/WebKit/Source/core/css/parser/CSSVariableParser.cpp
|
| @@ -47,7 +47,7 @@ bool classifyBlock(CSSParserTokenRange range, bool& hasReferences, bool& hasAtAp
|
| const CSSParserToken& token = range.consume();
|
| switch (token.type()) {
|
| case AtKeywordToken: {
|
| - if (token.valueEqualsIgnoringASCIICase("apply")) {
|
| + if (equalIgnoringASCIICase(token.value(), "apply")) {
|
| range.consumeWhitespace();
|
| const CSSParserToken& variableName = range.consumeIncludingWhitespace();
|
| if (!CSSVariableParser::isValidVariableName(variableName)
|
|
|