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

Unified Diff: third_party/WebKit/Source/bindings/tests/idls/core/TestInterface3.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/bindings/tests/idls/core/TestInterface3.idl
diff --git a/third_party/WebKit/Source/bindings/tests/idls/core/TestInterface3.idl b/third_party/WebKit/Source/bindings/tests/idls/core/TestInterface3.idl
index e80b7823b2ebf35c728d9f73294f0c632663fd41..401dbf1193befcafa73ade2230802fd5b2de4e3a 100644
--- a/third_party/WebKit/Source/bindings/tests/idls/core/TestInterface3.idl
+++ b/third_party/WebKit/Source/bindings/tests/idls/core/TestInterface3.idl
@@ -36,6 +36,10 @@
[
WebModuleAPI,
] interface TestInterface3 {
+ // iterable<V> needs a "length" property accompanying the indexed property
+ // getter below.
+ readonly attribute unsigned long length;
+
[Custom] getter boolean (unsigned long index);
[Custom] setter boolean (unsigned long index, Node value);
[Custom] deleter boolean (unsigned long index);

Powered by Google App Engine
This is Rietveld 408576698