aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/htmlformelement.rs
diff options
context:
space:
mode:
authorbors-servo <metajack+bors@gmail.com>2015-02-21 12:51:44 -0700
committerbors-servo <metajack+bors@gmail.com>2015-02-21 12:51:44 -0700
commitf1f826544919b4fa7cdf4bf263abf0c0c1497f70 (patch)
treef80ddaf5eccc7c96c8c5e95172cc794573ec7e92 /components/script/dom/htmlformelement.rs
parent939b13f436d2fc895cf8a57140b0bd50acc53a89 (diff)
parentcc487979994ec637a3d37f9a3e5edb4a56e7a379 (diff)
downloadservo-f1f826544919b4fa7cdf4bf263abf0c0c1497f70.tar.gz
servo-f1f826544919b4fa7cdf4bf263abf0c0c1497f70.zip
auto merge of #4956 : psdh/servo/interfail, r=jdm
Fixes #4923
Diffstat (limited to 'components/script/dom/htmlformelement.rs')
-rw-r--r--components/script/dom/htmlformelement.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/htmlformelement.rs b/components/script/dom/htmlformelement.rs
index be6f1fc9fcb..ddc8d42b661 100644
--- a/components/script/dom/htmlformelement.rs
+++ b/components/script/dom/htmlformelement.rs
@@ -215,7 +215,7 @@ impl<'a> HTMLFormElementHelpers for JSRef<'a, HTMLFormElement> {
}
// This is wrong. https://html.spec.whatwg.org/multipage/forms.html#planned-navigation
- win.r().script_chan().send(ScriptMsg::TriggerLoad(win.r().page().id, load_data));
+ win.r().script_chan().send(ScriptMsg::TriggerLoad(win.r().page().id, load_data)).unwrap();
}
fn get_form_dataset<'b>(self, submitter: Option<FormSubmitter<'b>>) -> Vec<FormDatum> {