diff options
author | Connor Brewster <brewsterc@my.caspercollege.edu> | 2016-05-11 15:01:43 -0600 |
---|---|---|
committer | Connor Brewster <brewsterc@my.caspercollege.edu> | 2016-05-11 15:01:43 -0600 |
commit | e50eb2a4d6d67baae55eb67a03b67efe36b582d5 (patch) | |
tree | 220349ab030cb737de04e579c2f02ed0101a4d6f /components/script/script_thread.rs | |
parent | 9efd214b1e2f4dc8af907bec2ca04eb93fba6eb8 (diff) | |
download | servo-e50eb2a4d6d67baae55eb67a03b67efe36b582d5.tar.gz servo-e50eb2a4d6d67baae55eb67a03b67efe36b582d5.zip |
Addressed comment
Diffstat (limited to 'components/script/script_thread.rs')
-rw-r--r-- | components/script/script_thread.rs | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/components/script/script_thread.rs b/components/script/script_thread.rs index 3102a0181e9..9bd7ce26c4f 100644 --- a/components/script/script_thread.rs +++ b/components/script/script_thread.rs @@ -625,17 +625,15 @@ impl ScriptThread { // Gather them first to avoid a double mut borrow on self. let mut resizes = vec!(); - { - let context = self.browsing_context.get(); - if let Some(context) = context { - for context in context.iter() { - // Only process a resize if layout is idle. - let window = context.active_window(); - let resize_event = window.steal_resize_event(); - match resize_event { - Some(size) => resizes.push((window.pipeline(), size)), - None => () - } + let context = self.browsing_context.get(); + if let Some(context) = context { + for context in context.iter() { + // Only process a resize if layout is idle. + let window = context.active_window(); + let resize_event = window.steal_resize_event(); + match resize_event { + Some(size) => resizes.push((window.pipeline(), size)), + None => () } } } @@ -1396,7 +1394,7 @@ impl ScriptThread { let ConstellationChan(ref chan) = self.constellation_chan; chan.send(ConstellationMsg::SetFinalUrl(incomplete.pipeline_id, final_url.clone())).unwrap(); } - debug!("ScriptThread: loading {} on context {:?}", incomplete.url, incomplete.pipeline_id); + debug!("ScriptThread: loading {} on pipeline {:?}", incomplete.url, incomplete.pipeline_id); let frame_element = incomplete.parent_info.and_then(|(parent_id, subpage_id)| { // The root context may not exist yet, if the parent of this frame |