mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-25 10:48:41 +00:00
9 lines
223 B
Plaintext
9 lines
223 B
Plaintext
[Exposed=Window, LegacyUnenumerableNamedProperties]
|
|
interface HTMLCollection {
|
|
|
|
readonly attribute unsigned long length;
|
|
getter Element? item(unsigned long index);
|
|
getter Element? namedItem(DOMString name);
|
|
|
|
};
|