HTMLFormControlsCollection.idl 335 B

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