diff options
author | Will Huxtable <will.huxtable@gmail.com> | 2015-07-11 17:06:12 +0100 |
---|---|---|
committer | Will Huxtable <will.huxtable@gmail.com> | 2015-07-11 17:06:12 +0100 |
commit | 58a31b07b4d2b10a37622fe35918415f333f1b04 (patch) | |
tree | 6506589fba33d9746a64bd06b6c10142033f2ec9 /components/script/script_task.rs | |
parent | 243446eff33d596b192a7190d5dfe3bb1a6e07dd (diff) | |
download | servo-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.rs | 2 |
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()); |