Index: third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp |
diff --git a/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp b/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp |
index f653367a9146144491af6745df1a8f55260438ea..88d4ec8c1ff4bbd92ccf6866c4980bf0eb2fdf3e 100644 |
--- a/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp |
+++ b/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp |
@@ -1534,7 +1534,7 @@ static PassRefPtrWillBeRawPtr<CSSValue> consumeAnimationName(CSSParserTokenRange |
context.useCounter()->count(UseCounter::QuotedAnimationName); |
const CSSParserToken& token = range.consumeIncludingWhitespace(); |
- if (token.valueEqualsIgnoringCase("none")) |
+ if (token.valueEqualsIgnoringASCIICase("none")) |
return cssValuePool().createIdentifierValue(CSSValueNone); |
return CSSCustomIdentValue::create(token.value()); |
} |