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

Unified Diff: third_party/WebKit/Source/core/dom/NodeList.idl

Issue 1367523002: [dom] support iterable<> NodeList (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix nits / Don't ship feature by default Created 5 years, 2 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/dom/NodeList.idl
diff --git a/third_party/WebKit/Source/core/dom/NodeList.idl b/third_party/WebKit/Source/core/dom/NodeList.idl
index 5e549ca9eda012fa93a8b10c969edb7997428163..8ee7b625d3043ebb5cc9a92432839f01f74893f8 100644
--- a/third_party/WebKit/Source/core/dom/NodeList.idl
+++ b/third_party/WebKit/Source/core/dom/NodeList.idl
@@ -27,5 +27,5 @@
] interface NodeList {
getter Node? item(unsigned long index);
readonly attribute unsigned long length;
- // FIXME: iterable<Node>;
+ [RuntimeEnabled=IterableNodeLists] iterable<Node>;
};

Powered by Google App Engine
This is Rietveld 408576698