diff options
author | Emilio Cobos Álvarez <emilio@crisal.io> | 2019-02-10 08:33:19 +0100 |
---|---|---|
committer | Emilio Cobos Álvarez <emilio@crisal.io> | 2019-02-12 02:28:00 +0100 |
commit | c2819365f05fc5d16cc8abedc5aa2171338330ad (patch) | |
tree | 6cefba97c941d6e4ce99bd5a5aca8380b47c639d /components/layout/table_cell.rs | |
parent | 7ed6b9d3ce81ff562344cd9f683be224080de9c7 (diff) | |
download | servo-c2819365f05fc5d16cc8abedc5aa2171338330ad.tar.gz servo-c2819365f05fc5d16cc8abedc5aa2171338330ad.zip |
style: Rename MozLength to Size, and MaxLength to MaxSize.
MozLength is not a very descriptive name. If we're going to use it in both Gecko
and Servo we may as well name it something more accurate.
I would've chosen `ContentSize` per CSS2[1][2] if it wasn't a lie in presence
of box-sizing. I don't have better ideas than `Size`, given that.
[1]: https://drafts.csswg.org/css2/visudet.html#propdef-width
[2]: https://drafts.csswg.org/css2/box.html#content-width
Differential Revision: https://phabricator.services.mozilla.com/D19280
Diffstat (limited to 'components/layout/table_cell.rs')
-rw-r--r-- | components/layout/table_cell.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/components/layout/table_cell.rs b/components/layout/table_cell.rs index 3bcc39f0193..682a1c38ec4 100644 --- a/components/layout/table_cell.rs +++ b/components/layout/table_cell.rs @@ -21,7 +21,7 @@ use script_layout_interface::wrapper_traits::ThreadSafeLayoutNode; use std::fmt; use style::logical_geometry::{LogicalMargin, LogicalRect, LogicalSize, WritingMode}; use style::properties::ComputedValues; -use style::values::computed::length::NonNegativeLengthPercentageOrAuto; +use style::values::computed::length::Size; use style::values::computed::Color; use style::values::generics::box_::VerticalAlign; use style::values::specified::BorderStyle; @@ -203,8 +203,8 @@ impl Flow for TableCellFlow { self.block_flow.bubble_inline_sizes_for_block(true); let specified_inline_size = match self.block_flow.fragment.style().content_inline_size() { - NonNegativeLengthPercentageOrAuto::Auto => Au(0), - NonNegativeLengthPercentageOrAuto::LengthPercentage(ref lp) => lp.to_used_value(Au(0)), + Size::Auto => Au(0), + Size::LengthPercentage(ref lp) => lp.to_used_value(Au(0)), }; if self |