diff options
author | Hugo Thiessard <hugo.thiessard@opmbx.org> | 2016-09-21 23:50:18 +0200 |
---|---|---|
committer | Hugo Thiessard <hugo.thiessard@opmbx.org> | 2016-09-23 14:01:58 +0200 |
commit | 0ac212afb18c98ea929368e9ccf21101e7a8921c (patch) | |
tree | e1e551143e9af8ae1532a50acbc290aa474e8014 /components | |
parent | 7b98c8a78819c57d90ed06c83f1376d4f38c8748 (diff) | |
download | servo-0ac212afb18c98ea929368e9ccf21101e7a8921c.tar.gz servo-0ac212afb18c98ea929368e9ccf21101e7a8921c.zip |
Issue #13350 Report tidy error for space after (
Diffstat (limited to 'components')
-rw-r--r-- | components/script/dom/htmlformelement.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/htmlformelement.rs b/components/script/dom/htmlformelement.rs index 268b04a159f..9622914b5b5 100644 --- a/components/script/dom/htmlformelement.rs +++ b/components/script/dom/htmlformelement.rs @@ -593,7 +593,7 @@ impl HTMLFormElement { "file" | "textarea" => (), // TODO _ => { datum.name = clean_crlf(&datum.name); - datum.value = FormDatumValue::String(clean_crlf( match datum.value { + datum.value = FormDatumValue::String(clean_crlf(match datum.value { FormDatumValue::String(ref s) => s, FormDatumValue::File(_) => unreachable!() })); |