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/HTMLInputElement.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/HTMLInputElement.webidl')
-rw-r--r-- | components/script/dom/webidls/HTMLInputElement.webidl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/components/script/dom/webidls/HTMLInputElement.webidl b/components/script/dom/webidls/HTMLInputElement.webidl index c62d29ddeeb..81ff5f97426 100644 --- a/components/script/dom/webidls/HTMLInputElement.webidl +++ b/components/script/dom/webidls/HTMLInputElement.webidl @@ -34,7 +34,8 @@ interface HTMLInputElement : HTMLElement { attribute DOMString placeholder; attribute boolean readOnly; // attribute boolean required; - attribute unsigned long size; + [SetterThrows] + attribute unsigned long size; // attribute DOMString src; // attribute DOMString step; attribute DOMString type; |