mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-09 08:32:04 +02:00
This collection is used in the form element for when element lookup yields multiple elements.
6 lines
335 B
Plaintext
6 lines
335 B
Plaintext
// https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#htmlformcontrolscollection
|
|
[Exposed=Window, UseNewAKString]
|
|
interface HTMLFormControlsCollection : HTMLCollection {
|
|
[ImplementedAs=named_item_or_radio_node_list] getter (RadioNodeList or Element)? namedItem(DOMString name); // shadows inherited namedItem()
|
|
};
|