aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/htmlformelement.rs
diff options
context:
space:
mode:
authorConnor Brewster <connor.brewster@eagles.oc.edu>2016-09-02 23:28:20 -0500
committerConnor Brewster <connor.brewster@eagles.oc.edu>2016-09-19 14:23:03 -0500
commite9b2f1b916754ac57ab06326f49b0f1de5e1e9c0 (patch)
tree6c7818483e8b876984e62305d3b04b34ca4b8345 /components/script/dom/htmlformelement.rs
parent0b0495cff4c0062f1def279c8079ca76c58aef23 (diff)
downloadservo-e9b2f1b916754ac57ab06326f49b0f1de5e1e9c0.tar.gz
servo-e9b2f1b916754ac57ab06326f49b0f1de5e1e9c0.zip
Replace current session entry for reloads
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 d6a794621e5..268b04a159f 100644
--- a/components/script/dom/htmlformelement.rs
+++ b/components/script/dom/htmlformelement.rs
@@ -902,7 +902,7 @@ impl Runnable for PlannedNavigation {
fn handler(self: Box<PlannedNavigation>) {
if self.generation_id == self.form.root().generation_id.get() {
let script_chan = self.script_chan.clone();
- script_chan.send(MainThreadScriptMsg::Navigate(self.pipeline_id, self.load_data)).unwrap();
+ script_chan.send(MainThreadScriptMsg::Navigate(self.pipeline_id, self.load_data, false)).unwrap();
}
}
}