| Index: third_party/WebKit/Source/core/css/parser/CSSPropertyParserHelpers.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/parser/CSSPropertyParserHelpers.cpp b/third_party/WebKit/Source/core/css/parser/CSSPropertyParserHelpers.cpp
|
| index 524e3439f3b84f2d5cc129ca5e6409ddb169307d..78945a7013fd333f4032f514535e489ff288150b 100644
|
| --- a/third_party/WebKit/Source/core/css/parser/CSSPropertyParserHelpers.cpp
|
| +++ b/third_party/WebKit/Source/core/css/parser/CSSPropertyParserHelpers.cpp
|
| @@ -18,6 +18,8 @@
|
| #include "core/css/CSSVariableData.h"
|
| #include "core/css/StyleColor.h"
|
| #include "core/css/parser/CSSParserContext.h"
|
| +#include "core/css/parser/CSSParserLocalContext.h"
|
| +#include "core/css/properties/CSSPropertyTransformUtils.h"
|
| #include "core/frame/UseCounter.h"
|
| #include "platform/RuntimeEnabledFeatures.h"
|
|
|
| @@ -1483,6 +1485,12 @@ void AddProperty(CSSPropertyID resolved_property,
|
| implicit));
|
| }
|
|
|
| +CSSValue* ConsumeTransformList(CSSParserTokenRange& range,
|
| + const CSSParserContext& context) {
|
| + return CSSPropertyTransformUtils::ConsumeTransformList(
|
| + range, context, CSSParserLocalContext());
|
| +}
|
| +
|
| } // namespace CSSPropertyParserHelpers
|
|
|
| } // namespace blink
|
|
|