diff options
author | bors-servo <metajack+bors@gmail.com> | 2015-03-04 16:54:44 -0700 |
---|---|---|
committer | bors-servo <metajack+bors@gmail.com> | 2015-03-04 16:54:44 -0700 |
commit | 34289943e354b2ac0e54fd1fe2d65c944f6c8e9d (patch) | |
tree | f223a953decc549e66779684ff5a974deae67dce /components/script/script_task.rs | |
parent | 761f7f056c607ed67adc0c4927ae63847aef8f0d (diff) | |
parent | a31d3d7f701b0194d9d83d6b684ab7718b9a954a (diff) | |
download | servo-34289943e354b2ac0e54fd1fe2d65c944f6c8e9d.tar.gz servo-34289943e354b2ac0e54fd1fe2d65c944f6c8e9d.zip |
auto merge of #5144 : Adenilson/servo/removeFlushLayout01, r=Manishearth
Due to changes on Page/Window interfaces, we no longer have use for flush_layout().
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 59b6278a67d..673dc3510ef 100644 --- a/components/script/script_task.rs +++ b/components/script/script_task.rs @@ -1007,7 +1007,7 @@ impl ScriptTask { debug!("kicking off initial reflow of {:?}", final_url); document.r().content_changed(NodeCast::from_ref(document.r()), NodeDamage::OtherNodeDamage); - window.r().flush_layout(ReflowGoal::ForDisplay, ReflowQueryType::NoQuery); + window.r().reflow(ReflowGoal::ForDisplay, ReflowQueryType::NoQuery); // No more reflow required page.set_reflow_status(false); |