aboutsummaryrefslogtreecommitdiffstats
path: root/components/layout/display_list_builder.rs
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2017-08-15 07:31:04 -0500
committerGitHub <noreply@github.com>2017-08-15 07:31:04 -0500
commit7d9b82b9efa7b10a2e34d93df5ac535d99518f7a (patch)
tree6f19f8562d57258c06ee21ee2bdbd85f9ae2cb64 /components/layout/display_list_builder.rs
parent41fb10c58995781d595a233afae0758427ad5cc5 (diff)
parentb5a4b8d6a09a71bd3a4ff4ae68e7a9639f9dcaad (diff)
downloadservo-7d9b82b9efa7b10a2e34d93df5ac535d99518f7a.tar.gz
servo-7d9b82b9efa7b10a2e34d93df5ac535d99518f7a.zip
Auto merge of #18046 - servo:rustup, r=emilio
Upgrade to rustc 1.21.0-nightly (13d94d5fa 2017-08-10) <!-- Reviewable:start --> This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/18046) <!-- Reviewable:end -->
Diffstat (limited to 'components/layout/display_list_builder.rs')
-rw-r--r--components/layout/display_list_builder.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout/display_list_builder.rs b/components/layout/display_list_builder.rs
index afc01739a03..3fc63df7c49 100644
--- a/components/layout/display_list_builder.rs
+++ b/components/layout/display_list_builder.rs
@@ -2731,7 +2731,7 @@ impl InlineFlowDisplayListBuilding for InlineFlow {
self.base.clip_and_scroll_info = Some(state.current_clip_and_scroll_info);
self.base.clip = state.clip_stack.last().cloned().unwrap_or_else(max_rect);
- for mut fragment in self.fragments.fragments.iter_mut() {
+ for fragment in self.fragments.fragments.iter_mut() {
let previous_cb_clip_scroll_info = state.containing_block_clip_and_scroll_info;
if establishes_containing_block_for_absolute(fragment.style.get_box().position) {
state.containing_block_clip_and_scroll_info = state.current_clip_and_scroll_info;