diff options
author | Matthew Rasmus <mattr@zzntd.com> | 2014-12-07 11:04:39 -0800 |
---|---|---|
committer | Matthew Rasmus <mattr@zzntd.com> | 2014-12-16 11:34:04 -0800 |
commit | 7e0c39a82d5ca9d766c0065f4cb6ba79b1cbe037 (patch) | |
tree | 0e0c5a9c40bde5ad035d5f556411725cf3d59a34 /components/script/dom/webidls/HTMLTextAreaElement.webidl | |
parent | a3b3295d80194becf83f153e480df7f19c3e2971 (diff) | |
download | servo-7e0c39a82d5ca9d766c0065f4cb6ba79b1cbe037.tar.gz servo-7e0c39a82d5ca9d766c0065f4cb6ba79b1cbe037.zip |
Implements FormControl for HTMLTextAreaElement
Diffstat (limited to 'components/script/dom/webidls/HTMLTextAreaElement.webidl')
-rw-r--r-- | components/script/dom/webidls/HTMLTextAreaElement.webidl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/webidls/HTMLTextAreaElement.webidl b/components/script/dom/webidls/HTMLTextAreaElement.webidl index 59d10658b14..4bc4510d2a2 100644 --- a/components/script/dom/webidls/HTMLTextAreaElement.webidl +++ b/components/script/dom/webidls/HTMLTextAreaElement.webidl @@ -16,7 +16,7 @@ interface HTMLTextAreaElement : HTMLElement { // attribute long minLength; attribute DOMString name; attribute DOMString placeholder; - // attribute boolean readOnly; + attribute boolean readOnly; attribute boolean required; attribute unsigned long rows; attribute DOMString wrap; |