diff options
author | tigercosmos <phy.tiger@gmail.com> | 2018-06-17 06:33:22 -0700 |
---|---|---|
committer | tigercosmos <phy.tiger@gmail.com> | 2018-06-18 02:01:59 -0700 |
commit | bdb6706f19167890aef895e5aa04bccc9de3695f (patch) | |
tree | f5b385ca0562ffca1175d6f7d39c25145ed14e28 /components/script/dom/webidls/HTMLTextAreaElement.webidl | |
parent | 440e855c335cce5f6523044ac53f54ac727d92e7 (diff) | |
download | servo-bdb6706f19167890aef895e5aa04bccc9de3695f.tar.gz servo-bdb6706f19167890aef895e5aa04bccc9de3695f.zip |
textarea minLength/maxLength
Diffstat (limited to 'components/script/dom/webidls/HTMLTextAreaElement.webidl')
-rw-r--r-- | components/script/dom/webidls/HTMLTextAreaElement.webidl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/components/script/dom/webidls/HTMLTextAreaElement.webidl b/components/script/dom/webidls/HTMLTextAreaElement.webidl index f8f52c82b92..3839be24f5e 100644 --- a/components/script/dom/webidls/HTMLTextAreaElement.webidl +++ b/components/script/dom/webidls/HTMLTextAreaElement.webidl @@ -18,10 +18,10 @@ interface HTMLTextAreaElement : HTMLElement { readonly attribute HTMLFormElement? form; // [CEReactions] // attribute DOMString inputMode; - // [CEReactions] - // attribute long maxLength; - // [CEReactions] - // attribute long minLength; + [CEReactions, SetterThrows] + attribute long maxLength; + [CEReactions, SetterThrows] + attribute long minLength; attribute DOMString name; [CEReactions] attribute DOMString placeholder; |