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