HTMLOutputElement.idl 254 B

1234567891011
  1. #import <HTML/HTMLElement.idl>
  2. // https://html.spec.whatwg.org/multipage/form-elements.html#htmloutputelement
  3. [Exposed=Window]
  4. interface HTMLOutputElement : HTMLElement {
  5. [HTMLConstructor] constructor();
  6. readonly attribute DOMString type;
  7. };