| Index: Source/core/css/parser/CSSParser.cpp
|
| diff --git a/Source/core/css/parser/CSSParser.cpp b/Source/core/css/parser/CSSParser.cpp
|
| index ee6e0c18fbb05f36bae057006aeab1ba432eb357..7f370cdebe6cfc1fde8c1666cc485a142d7fc31c 100644
|
| --- a/Source/core/css/parser/CSSParser.cpp
|
| +++ b/Source/core/css/parser/CSSParser.cpp
|
| @@ -10,6 +10,7 @@
|
| #include "core/css/StyleRule.h"
|
| #include "core/css/StyleSheetContents.h"
|
| #include "core/css/parser/CSSParserFastPaths.h"
|
| +#include "core/css/parser/CSSParserImpl.h"
|
|
|
| namespace blink {
|
|
|
| @@ -52,6 +53,8 @@ bool CSSParser::parseValue(MutableStylePropertySet* declaration, CSSPropertyID p
|
|
|
| bool CSSParser::parseValue(MutableStylePropertySet* declaration, CSSPropertyID propertyID, const String& string, bool important, const CSSParserContext& context)
|
| {
|
| + if (RuntimeEnabledFeatures::newCSSParserEnabled())
|
| + return CSSParserImpl::parseValue(declaration, propertyID, string, important, context);
|
| return BisonCSSParser::parseValue(declaration, propertyID, string, important, context);
|
| }
|
|
|
|
|