mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-22 17:31:58 -05:00
8c9acd4a76
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. (cherry picked from commit 51528ec6779202747cc3b99d3b77772a124a0b47)
12 lines
509 B
Text
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.
|
|
};
|