HTMLButtonElement.idl 456 B

123456789101112131415
  1. #import <HTML/HTMLElement.idl>
  2. // https://html.spec.whatwg.org/multipage/semantics.html#htmlbuttonelement
  3. [Exposed=Window]
  4. interface HTMLButtonElement : HTMLElement {
  5. [HTMLConstructor] constructor();
  6. [Reflect=formnovalidate] attribute boolean formNoValidate;
  7. [Reflect=formtarget] attribute DOMString formTarget;
  8. [Reflect] attribute DOMString name;
  9. [Reflect] attribute DOMString value;
  10. [CEReactions] attribute DOMString type;
  11. };