summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/DOM/NodeList.idl
blob: 8a4fa5a3aa13ac1071ebbdb5eb47143874953875 (plain)
1
2
3
4
5
6
7
8
#import <DOM/Node.idl>

[Exposed=Window]
interface NodeList {
    getter Node? item(unsigned long index);
    readonly attribute unsigned long length;
    iterable<Node>;
};