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

Unified Diff: third_party/WebKit/Source/core/css/cssom/CSSUnparsedValue.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/CSSUnparsedValue.idl
diff --git a/third_party/WebKit/Source/core/css/cssom/CSSUnparsedValue.idl b/third_party/WebKit/Source/core/css/cssom/CSSUnparsedValue.idl
index 3d3d048b291ae0d2256b51e1e6d7b883395d7ece..9f8b39529538a76e9097623d2d0a203e3ae1adc6 100644
--- a/third_party/WebKit/Source/core/css/cssom/CSSUnparsedValue.idl
+++ b/third_party/WebKit/Source/core/css/cssom/CSSUnparsedValue.idl
@@ -6,5 +6,9 @@
Exposed=(Window,PaintWorklet),
RuntimeEnabled=CSSTypedOM,
] interface CSSUnparsedValue : CSSStyleValue {
+ // https://github.com/w3c/css-houdini-drafts/issues/358
+ readonly attribute unsigned long length;
+ [ImplementedAs=fragmentAtIndex] getter (DOMString or CSSVariableReferenceValue) (unsigned long index);
+
iterable<(DOMString or CSSVariableReferenceValue)>;
};

Powered by Google App Engine
This is Rietveld 408576698