2023-11-08 11:04:56 -07:00
|
|
|
#import <DOM/HTMLCollection.idl>
|
2024-11-02 09:22:13 -04:00
|
|
|
#import <HTML/RadioNodeList.idl>
|
2023-11-08 11:04:56 -07:00
|
|
|
|
2023-08-20 14:41:51 +12:00
|
|
|
// https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#htmlformcontrolscollection
|
2023-09-03 02:00:01 +12:00
|
|
|
[Exposed=Window]
|
2023-08-20 14:41:51 +12:00
|
|
|
interface HTMLFormControlsCollection : HTMLCollection {
|
2024-01-17 21:03:20 +01:00
|
|
|
[ImplementedAs=named_item_or_radio_node_list] getter (RadioNodeList or Element)? namedItem(DOMString name); // shadows inherited namedItem()
|
2023-08-20 14:41:51 +12:00
|
|
|
};
|