HTMLFormControlsCollection.idl 383 B

12345678
  1. #import <DOM/HTMLCollection.idl>
  2. #import <DOM/RadioNodeList.idl>
  3. // https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#htmlformcontrolscollection
  4. [Exposed=Window]
  5. interface HTMLFormControlsCollection : HTMLCollection {
  6. [ImplementedAs=named_item_or_radio_node_list] getter (RadioNodeList or Element)? namedItem(DOMString name); // shadows inherited namedItem()
  7. };