mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-31 15:32:51 +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()
|
|
};
|