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