ladybird/Userland/Libraries/LibWeb/HTML/HTMLAllCollection.idl
sideshowbarker 51528ec677 LibWeb: Normalize all WebIDL definition lines to four leading spaces
This change takes all existing WebIDL files in the repo that had
definition lines without four leading spaces, and fixes them so they
have four leading spaces.
2024-09-10 21:16:53 +01:00

12 lines
509 B
Text

#import <DOM/Element.idl>
#import <DOM/HTMLCollection.idl>
[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.
};