These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
7 lines
201 B
Text
7 lines
201 B
Text
// https://dom.spec.whatwg.org/#interface-nodelist
|
|
[Exposed=Window]
|
|
interface NodeList {
|
|
getter Node? item(unsigned long index);
|
|
readonly attribute unsigned long length;
|
|
iterable<Node>;
|
|
};
|