NodeList.idl 150 B

123456
  1. [Exposed=Window]
  2. interface NodeList {
  3. getter Node? item(unsigned long index);
  4. readonly attribute unsigned long length;
  5. iterable<Node>;
  6. };