HTMLButtonElement.idl 563 B

12345678910111213141516
  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. [CEReactions, Reflect] attribute boolean disabled;
  7. [CEReactions, Reflect=formnovalidate] attribute boolean formNoValidate;
  8. [CEReactions, Reflect=formtarget] attribute DOMString formTarget;
  9. [CEReactions, Reflect] attribute DOMString name;
  10. [CEReactions, Reflect] attribute DOMString value;
  11. [CEReactions] attribute DOMString type;
  12. };