| 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 413bbf7eb1e3a0fcc67b193d840e51f3255527e7..a6defa4b642c528f73a1092d06a0b8d91bc56cbc 100644
|
| --- a/third_party/WebKit/Source/core/css/parser/CSSParser.cpp
|
| +++ b/third_party/WebKit/Source/core/css/parser/CSSParser.cpp
|
| @@ -89,6 +89,11 @@ bool CSSParser::parseValueForCustomProperty(MutableStylePropertySet* declaration
|
| return CSSParserImpl::parseVariableValue(declaration, propertyName, value, important, context);
|
| }
|
|
|
| +PassRefPtrWillBeRawPtr<ImmutableStylePropertySet> CSSParser::parseCustomPropertySet(CSSParserTokenRange range)
|
| +{
|
| + return CSSParserImpl::parseCustomPropertySet(range);
|
| +}
|
| +
|
| bool CSSParser::parseValue(MutableStylePropertySet* declaration, CSSPropertyID unresolvedProperty, const String& string, bool important, const CSSParserContext& context)
|
| {
|
| return CSSParserImpl::parseValue(declaration, unresolvedProperty, string, important, context);
|
|
|