aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/webidls/HTMLInputElement.webidl
diff options
context:
space:
mode:
authorAnthony Ramine <n.oxyde@gmail.com>2015-05-03 14:51:40 +0200
committerAnthony Ramine <n.oxyde@gmail.com>2015-05-06 20:18:08 +0200
commitfedad2af1f7c8b36f4ed76e79ebde5516721b11f (patch)
tree8a156ed87af2173bbe893717559900466d62ab12 /components/script/dom/webidls/HTMLInputElement.webidl
parent15c4372a8be9c2b73d9e09bd7684484e48d220e8 (diff)
downloadservo-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.webidl3
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;