mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 13:44:58 +00:00

This collection is used in the form element for when element lookup yields multiple elements.
5 lines
335 B
Text
5 lines
335 B
Text
// 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()
|
|
};
|