mirror of
https://github.com/servo/servo.git
synced 2025-08-03 12:40:06 +01:00
Improve support of limited unsigned long attributes
This commit is contained in:
parent
15c4372a8b
commit
fedad2af1f
15 changed files with 106 additions and 483 deletions
|
@ -7,7 +7,8 @@
|
|||
interface HTMLTextAreaElement : HTMLElement {
|
||||
// attribute DOMString autocomplete;
|
||||
// attribute boolean autofocus;
|
||||
attribute unsigned long cols;
|
||||
[SetterThrows]
|
||||
attribute unsigned long cols;
|
||||
// attribute DOMString dirName;
|
||||
attribute boolean disabled;
|
||||
//readonly attribute HTMLFormElement? form;
|
||||
|
@ -18,6 +19,7 @@ interface HTMLTextAreaElement : HTMLElement {
|
|||
attribute DOMString placeholder;
|
||||
attribute boolean readOnly;
|
||||
attribute boolean required;
|
||||
[SetterThrows]
|
||||
attribute unsigned long rows;
|
||||
attribute DOMString wrap;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue