These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
15 lines
416 B
Text
15 lines
416 B
Text
// https://dom.spec.whatwg.org/#interface-nodeiterator
|
|
[Exposed=Window]
|
|
interface NodeIterator {
|
|
[SameObject] readonly attribute Node root;
|
|
readonly attribute Node referenceNode;
|
|
readonly attribute boolean pointerBeforeReferenceNode;
|
|
readonly attribute unsigned long whatToShow;
|
|
|
|
readonly attribute NodeFilter? filter;
|
|
|
|
Node? nextNode();
|
|
Node? previousNode();
|
|
|
|
undefined detach();
|
|
};
|