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

Unified Diff: core/dom/NodeList.idl

Issue 1660113002: Updated to Chrome 45 (2454) moved from SVN to git. Base URL: https://github.com/dart-lang/webcore.git@roll_45
Patch Set: Created 4 years, 11 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
« no previous file with comments | « core/dom/NodeIterator.idl ('k') | core/dom/NonDocumentTypeChildNode.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/dom/NodeList.idl
diff --git a/core/dom/NodeList.idl b/core/dom/NodeList.idl
index 85a7be8a2bcbb920d61006a75e48f3cd0ed668b5..5e549ca9eda012fa93a8b10c969edb7997428163 100644
--- a/core/dom/NodeList.idl
+++ b/core/dom/NodeList.idl
@@ -18,11 +18,14 @@
* Boston, MA 02110-1301, USA.
*/
+// https://dom.spec.whatwg.org/#interface-nodelist
+
[
DependentLifetime,
SetWrapperReferenceFrom=virtualOwnerNode,
WillBeGarbageCollected,
] interface NodeList {
- [DartNoAutoScope] getter Node item(unsigned long index);
- [DartNoAutoScope] readonly attribute unsigned long length;
+ getter Node? item(unsigned long index);
+ readonly attribute unsigned long length;
+ // FIXME: iterable<Node>;
};
« no previous file with comments | « core/dom/NodeIterator.idl ('k') | core/dom/NonDocumentTypeChildNode.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698