ladybird/Libraries/LibWeb/DOM/HTMLCollection.idl

8 lines
278 B
Text
Raw Normal View History

// https://dom.spec.whatwg.org/#interface-htmlcollection
[Exposed=Window, LegacyUnenumerableNamedProperties]
interface HTMLCollection {
readonly attribute unsigned long length;
getter Element? item(unsigned long index);
getter Element? namedItem(DOMString name);
};