mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-01 20:07:38 +02:00
11 lines
250 B
Plaintext
11 lines
250 B
Plaintext
#import <DOM/Element.idl>
|
|
|
|
[Exposed=Window, LegacyUnenumerableNamedProperties]
|
|
interface HTMLCollection {
|
|
|
|
readonly attribute unsigned long length;
|
|
getter Element? item(unsigned long index);
|
|
getter Element? namedItem(DOMString name);
|
|
|
|
};
|