HTMLDataListElement.idl 273 B

123456789
  1. #import <HTML/HTMLElement.idl>
  2. // https://html.spec.whatwg.org/multipage/semantics.html#htmldatalistelement
  3. [Exposed=Window]
  4. interface HTMLDataListElement : HTMLElement {
  5. [HTMLConstructor] constructor();
  6. [SameObject] readonly attribute HTMLCollection options;
  7. };