Index: Source/core/css/parser/CSSPropertyParser.cpp |
diff --git a/Source/core/css/parser/CSSPropertyParser.cpp b/Source/core/css/parser/CSSPropertyParser.cpp |
index 3800340654cf97a7ff909a178623ac0fd2bd54c2..297c950f6a625605f17ba5efa562749525af51b1 100644 |
--- a/Source/core/css/parser/CSSPropertyParser.cpp |
+++ b/Source/core/css/parser/CSSPropertyParser.cpp |
@@ -3056,11 +3056,6 @@ PassRefPtrWillBeRawPtr<CSSValue> CSSPropertyParser::parseAnimationProperty() |
CSSParserValue* value = m_valueList->current(); |
if (value->m_unit != CSSParserValue::Identifier) |
return nullptr; |
- // Since all is valid css property keyword, cssPropertyID for all |
- // returns non-null value. We need to check "all" before |
- // cssPropertyID check. |
- if (value->id == CSSValueAll) |
- return cssValuePool().createIdentifierValue(CSSValueAll); |
CSSPropertyID property = unresolvedCSSPropertyID(value->string); |
if (property) { |
ASSERT(CSSPropertyMetadata::isEnabledProperty(property)); |