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>; |
}; |