aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/script_task.rs
diff options
context:
space:
mode:
authorWill Huxtable <will.huxtable@gmail.com>2015-07-11 17:06:12 +0100
committerWill Huxtable <will.huxtable@gmail.com>2015-07-11 17:06:12 +0100
commit58a31b07b4d2b10a37622fe35918415f333f1b04 (patch)
tree6506589fba33d9746a64bd06b6c10142033f2ec9 /components/script/script_task.rs
parent243446eff33d596b192a7190d5dfe3bb1a6e07dd (diff)
downloadservo-58a31b07b4d2b10a37622fe35918415f333f1b04.tar.gz
servo-58a31b07b4d2b10a37622fe35918415f333f1b04.zip
Remove url field from Page
Diffstat (limited to 'components/script/script_task.rs')
-rw-r--r--components/script/script_task.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/script_task.rs b/components/script/script_task.rs
index f2c07735d89..49f9ecdfa2d 100644
--- a/components/script/script_task.rs
+++ b/components/script/script_task.rs
@@ -1196,7 +1196,7 @@ impl ScriptTask {
});
// Create a new frame tree entry.
- let page = Rc::new(Page::new(incomplete.pipeline_id, final_url.clone()));
+ let page = Rc::new(Page::new(incomplete.pipeline_id));
if !root_page_exists {
// We have a new root frame tree.
*self.page.borrow_mut() = Some(page.clone());