Implement HTMLSelectElement.{multiple, name, size} (fixes #6017)

This commit is contained in:
Jinwoo Song 2015-05-12 15:46:55 +09:00
parent 10d8200a54
commit 656a8ee3c8
4 changed files with 34 additions and 444 deletions

View file

@ -8,10 +8,10 @@ interface HTMLSelectElement : HTMLElement {
// attribute boolean autofocus;
attribute boolean disabled;
//readonly attribute HTMLFormElement? form;
// attribute boolean multiple;
// attribute DOMString name;
attribute boolean multiple;
attribute DOMString name;
// attribute boolean required;
// attribute unsigned long size;
attribute unsigned long size;
readonly attribute DOMString type;