diff options
author | Anthony Ramine <n.oxyde@gmail.com> | 2015-05-03 14:51:40 +0200 |
---|---|---|
committer | Anthony Ramine <n.oxyde@gmail.com> | 2015-05-06 20:18:08 +0200 |
commit | fedad2af1f7c8b36f4ed76e79ebde5516721b11f (patch) | |
tree | 8a156ed87af2173bbe893717559900466d62ab12 /components/script/dom/webidls/HTMLTextAreaElement.webidl | |
parent | 15c4372a8be9c2b73d9e09bd7684484e48d220e8 (diff) | |
download | servo-fedad2af1f7c8b36f4ed76e79ebde5516721b11f.tar.gz servo-fedad2af1f7c8b36f4ed76e79ebde5516721b11f.zip |
Improve support of limited unsigned long attributes
Diffstat (limited to 'components/script/dom/webidls/HTMLTextAreaElement.webidl')
-rw-r--r-- | components/script/dom/webidls/HTMLTextAreaElement.webidl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/components/script/dom/webidls/HTMLTextAreaElement.webidl b/components/script/dom/webidls/HTMLTextAreaElement.webidl index 7feec003ba5..fa70cb4d47a 100644 --- a/components/script/dom/webidls/HTMLTextAreaElement.webidl +++ b/components/script/dom/webidls/HTMLTextAreaElement.webidl @@ -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; |