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

Unified Diff: third_party/WebKit/Source/core/css/cssom/CSSTransformValue.idl

Issue 2683853005: bindings: Make some value iterator properties aliases to Array.prototype functions (Closed)
Patch Set: Remove constexpr from Internals.h to fix the Android build Created 3 years, 10 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/cssom/CSSTransformValue.idl
diff --git a/third_party/WebKit/Source/core/css/cssom/CSSTransformValue.idl b/third_party/WebKit/Source/core/css/cssom/CSSTransformValue.idl
index 710c2b65b7dd1c1eb0429e740f9a31158fabcf1b..296be182c5c5c9cebc5657ec45b8a1aee1c648a3 100644
--- a/third_party/WebKit/Source/core/css/cssom/CSSTransformValue.idl
+++ b/third_party/WebKit/Source/core/css/cssom/CSSTransformValue.idl
@@ -8,6 +8,11 @@
Exposed=(Window,PaintWorklet),
RuntimeEnabled=CSSTypedOM
] interface CSSTransformValue : CSSStyleValue {
+ // https://github.com/w3c/css-houdini-drafts/issues/358
+ readonly attribute unsigned long length;
+ [ImplementedAs=componentAtIndex] getter CSSTransformComponent (unsigned long index);
+
iterable<CSSTransformComponent>;
+
boolean is2D();
};

Powered by Google App Engine
This is Rietveld 408576698