Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(150)

Unified Diff: third_party/WebKit/Source/core/css/parser/CSSPropertyParserHelpers.cpp

Issue 2951763002: CSS Properties & Values API: replace transform-function with transform-list. (Closed)
Patch Set: move Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698