| Index: third_party/WebKit/Source/core/css/parser/CSSParser.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/parser/CSSParser.cpp b/third_party/WebKit/Source/core/css/parser/CSSParser.cpp
|
| index 5af2a021a8c93b75007cce704b40115bd3e65191..42285e65050656e81e12958b3f1353f13b716343 100644
|
| --- a/third_party/WebKit/Source/core/css/parser/CSSParser.cpp
|
| +++ b/third_party/WebKit/Source/core/css/parser/CSSParser.cpp
|
| @@ -78,7 +78,7 @@ bool CSSParser::parseValue(MutableStylePropertySet* declaration, CSSPropertyID u
|
|
|
| bool CSSParser::parseValueForCustomProperty(MutableStylePropertySet* declaration, const AtomicString& propertyName, const String& value, bool important, StyleSheetContents* styleSheet)
|
| {
|
| - ASSERT(RuntimeEnabledFeatures::cssVariablesEnabled() && CSSVariableParser::isValidVariableName(propertyName));
|
| + DCHECK(CSSVariableParser::isValidVariableName(propertyName));
|
| if (value.isEmpty())
|
| return false;
|
| CSSParserMode parserMode = declaration->cssParserMode();
|
|
|