aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/htmltextareaelement.rs
diff options
context:
space:
mode:
authorMatthew Rasmus <mattr@zzntd.com>2014-12-08 10:20:09 -0800
committerMatthew Rasmus <mattr@zzntd.com>2014-12-16 11:34:04 -0800
commit0c8e1aeda338c4fc6397e3e413fa8d93b7bad50c (patch)
tree8ccc79decf1527e66e01bb50c1e6eed408426f21 /components/script/dom/htmltextareaelement.rs
parent38e4d86b148c198771f3917c0e0d6f2a639a0ca1 (diff)
downloadservo-0c8e1aeda338c4fc6397e3e413fa8d93b7bad50c.tar.gz
servo-0c8e1aeda338c4fc6397e3e413fa8d93b7bad50c.zip
Implements dirty value/checked flags for input
And modifies test-inputs.html to test. Fixes wpt breaking mistake
Diffstat (limited to 'components/script/dom/htmltextareaelement.rs')
-rw-r--r--components/script/dom/htmltextareaelement.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/htmltextareaelement.rs b/components/script/dom/htmltextareaelement.rs
index 431be82e9db..bfa382c6f5f 100644
--- a/components/script/dom/htmltextareaelement.rs
+++ b/components/script/dom/htmltextareaelement.rs
@@ -109,7 +109,7 @@ impl<'a> HTMLTextAreaElementMethods for JSRef<'a, HTMLTextAreaElement> {
make_bool_getter!(ReadOnly)
// https://html.spec.whatwg.org/multipage/forms.html#attr-textarea-readonly
- make_bool_setter!(SetReadOnly, "readOnly")
+ make_bool_setter!(SetReadOnly, "readonly")
// https://html.spec.whatwg.org/multipage/forms.html#dom-textarea-required
make_bool_getter!(Required)