2022-02-15 16:10:51 -03:00
|
|
|
#import <DOM/Element.idl>
|
|
|
|
|
|
2023-10-25 12:27:19 -03:00
|
|
|
// https://dom.spec.whatwg.org/#interface-htmlcollection
|
2023-09-02 11:00:01 -03:00
|
|
|
[Exposed=Window, LegacyUnenumerableNamedProperties]
|
2021-04-22 16:11:20 -03:00
|
|
|
interface HTMLCollection {
|
|
|
|
|
readonly attribute unsigned long length;
|
2021-09-26 11:14:37 -03:00
|
|
|
getter Element? item(unsigned long index);
|
|
|
|
|
getter Element? namedItem(DOMString name);
|
2021-04-22 16:11:20 -03:00
|
|
|
};
|