summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/DOM/HTMLCollection.idl
blob: 89cc874c8a1a7c3584f54a7ffeebb095a8a724d3 (plain)
1
2
3
4
5
6
7
8
[CustomGet,CustomGetByIndex]
interface HTMLCollection {

    readonly attribute unsigned long length;
    Element? item(unsigned long index);
    Element? namedItem(DOMString name);

};