diff options
author | Manish Goregaokar <manishearth@gmail.com> | 2017-07-17 11:41:52 -0700 |
---|---|---|
committer | Manish Goregaokar <manishsmail@gmail.com> | 2017-07-17 18:02:25 -0700 |
commit | 808b1f509b7e1524cfc49f7cc1fc89fd5f8e5737 (patch) | |
tree | b6f4e04c1d0a4e427b2360d60abb02eea8e5aec8 /components/layout/table.rs | |
parent | 04b0ae64f2fe606744142e353388749fe283a8ad (diff) | |
download | servo-808b1f509b7e1524cfc49f7cc1fc89fd5f8e5737.tar.gz servo-808b1f509b7e1524cfc49f7cc1fc89fd5f8e5737.zip |
stylo: Use ComputedValuesInner instead of ComputedValues when we don't need it
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) } |