diff options
Diffstat (limited to 'components/script/dom/webidls/HTMLButtonElement.webidl')
-rw-r--r-- | components/script/dom/webidls/HTMLButtonElement.webidl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/components/script/dom/webidls/HTMLButtonElement.webidl b/components/script/dom/webidls/HTMLButtonElement.webidl index 110d483a2b4..7613bd56687 100644 --- a/components/script/dom/webidls/HTMLButtonElement.webidl +++ b/components/script/dom/webidls/HTMLButtonElement.webidl @@ -6,16 +6,16 @@ // https://www.whatwg.org/html/#htmlbuttonelement interface HTMLButtonElement : HTMLElement { // attribute boolean autofocus; - attribute boolean disabled; + attribute boolean disabled; //readonly attribute HTMLFormElement? form; attribute DOMString formAction; attribute DOMString formEnctype; attribute DOMString formMethod; // attribute boolean formNoValidate; attribute DOMString formTarget; - // attribute DOMString name; - attribute DOMString type; - // attribute DOMString value; + attribute DOMString name; + attribute DOMString type; + attribute DOMString value; // attribute HTMLMenuElement? menu; //readonly attribute boolean willValidate; |