NodeList.idl 225 B

123456789
  1. #import <DOM/Node.idl>
  2. // https://dom.spec.whatwg.org/#interface-nodelist
  3. [Exposed=Window]
  4. interface NodeList {
  5. getter Node? item(unsigned long index);
  6. readonly attribute unsigned long length;
  7. iterable<Node>;
  8. };