diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2017-07-17 19:44:25 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-17 19:44:25 -0700 |
commit | d746abaa9e69e6cf0ad187d2b46be661bbe03a9f (patch) | |
tree | 88e530de84083ce9251fd2ba3b00d914ec3beb76 /components/layout/table.rs | |
parent | 97023f18f34413d79b0c7e0b7d5cb3781868392f (diff) | |
parent | 8eafe6a3b7a5a4170857a968176b643a22d2ff48 (diff) | |
download | servo-d746abaa9e69e6cf0ad187d2b46be661bbe03a9f.tar.gz servo-d746abaa9e69e6cf0ad187d2b46be661bbe03a9f.zip |
Auto merge of #17767 - Manishearth:stylo-fuse, r=bholley
stylo: Fuse ServoStyleContext and ServoComputedValues
r=bholley https://bugzilla.mozilla.org/show_bug.cgi?id=1367904
<!-- 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/17767)
<!-- Reviewable:end -->
Diffstat (limited to 'components/layout/table.rs')
-rw-r--r-- | components/layout/table.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/layout/table.rs b/components/layout/table.rs index d199b059a69..809e2ac4e29 100644 --- a/components/layout/table.rs +++ b/components/layout/table.rs @@ -24,7 +24,7 @@ use std::fmt; use style::computed_values::{border_collapse, border_spacing, table_layout}; use style::context::SharedStyleContext; use style::logical_geometry::LogicalSize; -use style::properties::ServoComputedValues; +use style::properties::ComputedValues; use style::servo::restyle_damage::{REFLOW, REFLOW_OUT_OF_FLOW}; use style::values::CSSFloat; use style::values::computed::LengthOrPercentageOrAuto; @@ -506,7 +506,7 @@ impl Flow for TableFlow { self.block_flow.collect_stacking_contexts(state); } - fn repair_style(&mut self, new_style: &::StyleArc<ServoComputedValues>) { + fn repair_style(&mut self, new_style: &::StyleArc<ComputedValues>) { self.block_flow.repair_style(new_style) } |