Make NodeList iterable

This commit is contained in:
hsinewu 2016-09-05 13:03:38 +08:00
parent 92c3961743
commit b4ac513371
3 changed files with 44 additions and 1 deletions

View file

@ -12,5 +12,5 @@ interface NodeList {
getter Node? item(unsigned long index);
[Pure]
readonly attribute unsigned long length;
// iterable<Node>;
iterable<Node?>;
};