diff options
author | Jinwoo Song <jinwoo7.song@samsung.com> | 2015-05-11 17:47:44 +0900 |
---|---|---|
committer | Jinwoo Song <jinwoo7.song@samsung.com> | 2015-05-12 09:52:25 +0900 |
commit | 94c3077edcc0f206454c6680d11d6e538e732801 (patch) | |
tree | 67f8764249275705bb5b47dd8e8fe693dd676527 /components/script/dom/webidls/HTMLButtonElement.webidl | |
parent | c76d73d1244089e1db8c3e11b341c9ce4b6621d7 (diff) | |
download | servo-94c3077edcc0f206454c6680d11d6e538e732801.tar.gz servo-94c3077edcc0f206454c6680d11d6e538e732801.zip |
Implement name and value attributes of HTMLButtonElement (fixes #6003)
Implemented getter and setter of the attributes.
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; |