mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2026-06-18 07:43:37 +00:00
These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
9 lines
449 B
Text
9 lines
449 B
Text
[Exposed=Window, LegacyUnenumerableNamedProperties]
|
|
interface HTMLAllCollection {
|
|
readonly attribute unsigned long length;
|
|
getter Element (unsigned long index);
|
|
getter (HTMLCollection or Element)? namedItem([FlyString] DOMString name);
|
|
(HTMLCollection or Element)? item(optional [FlyString] DOMString nameOrIndex);
|
|
|
|
// Note: HTMLAllCollection objects have a custom [[Call]] internal method and an [[IsHTMLDDA]] internal slot.
|
|
};
|