Implement name and value attributes of HTMLButtonElement (fixes #6003)

Implemented getter and setter of the attributes.
This commit is contained in:
Jinwoo Song 2015-05-11 17:47:44 +09:00
parent c76d73d124
commit 94c3077edc
4 changed files with 16 additions and 274 deletions

View file

@ -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;