Closed
Description
Would you please add iterator in NodeList interface as DOM4 spec says?
IDL[Exposed=Window]
interface NodeList# {
getter Node? item(unsigned long index#);
readonly attribute unsigned long length;
iterable<Node>;
};
NodeList.prototype[Symbol.iterator]
// gives `function [Symbol.iterator]()` in Firefox console