aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/script_task.rs
diff options
context:
space:
mode:
authorCameron Zwarich <zwarich@mozilla.com>2014-07-19 17:17:00 -0700
committerCameron Zwarich <zwarich@mozilla.com>2014-07-19 17:17:00 -0700
commita7eafbc48e21c4c81dcb09140d52344cbe40ecf5 (patch)
tree2c97b806ceac9b6535a802446ea0a07bc19806b7 /src/components/script/script_task.rs
parent39b9397c2be368ecc10564ffe6ac787cddcadc7c (diff)
downloadservo-a7eafbc48e21c4c81dcb09140d52344cbe40ecf5.tar.gz
servo-a7eafbc48e21c4c81dcb09140d52344cbe40ecf5.zip
Revert "Merge pull request #2819 from bjwbell/iframe-layers"
This reverts commit 0200b61f713f2cdddcbc06ccd4cb5de11332899a, reversing changes made to ca968219025a46e57b5cd770ae7c8ac5919876b1.
Diffstat (limited to 'src/components/script/script_task.rs')
-rw-r--r--src/components/script/script_task.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/script/script_task.rs b/src/components/script/script_task.rs
index 51a4c5f3e51..e173a37f762 100644
--- a/src/components/script/script_task.rs
+++ b/src/components/script/script_task.rs
@@ -452,7 +452,7 @@ impl ScriptTask {
let mut layout_join_port = page.layout_join_port.deref().borrow_mut();
*layout_join_port = None;
}
- self.compositor.set_ready_state(pipeline_id, FinishedLoading);
+ self.compositor.set_ready_state(FinishedLoading);
}
/// Handles a navigate forward or backward message.
@@ -549,7 +549,7 @@ impl ScriptTask {
let document = Document::new(&*window, Some(url.clone()), HTMLDocument, None).root();
window.deref().init_browser_context(&*document);
- self.compositor.set_ready_state(pipeline_id, Loading);
+ self.compositor.set_ready_state(Loading);
// Parse HTML.
//
// Note: We can parse the next document in parallel with any previous documents.