diff options
author | Glenn Watson <gw@intuitionlibrary.com> | 2015-09-28 16:53:00 +1000 |
---|---|---|
committer | Glenn Watson <gw@intuitionlibrary.com> | 2015-10-01 07:16:11 +1000 |
commit | 339a3f869b539ae6da49f5d34568789d0abf3e00 (patch) | |
tree | 06790c2e03a77bdbb988361dcf8e0b34b97dec4b /components/layout/table_colgroup.rs | |
parent | fb6d0946cb3bac713bc20794f17a40fa7a12bc00 (diff) | |
download | servo-339a3f869b539ae6da49f5d34568789d0abf3e00.tar.gz servo-339a3f869b539ae6da49f5d34568789d0abf3e00.zip |
Split Au type into separate crate, with minimal dependencies.
Diffstat (limited to 'components/layout/table_colgroup.rs')
-rw-r--r-- | components/layout/table_colgroup.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/components/layout/table_colgroup.rs b/components/layout/table_colgroup.rs index 4cbb41e4c39..12273d0e173 100644 --- a/components/layout/table_colgroup.rs +++ b/components/layout/table_colgroup.rs @@ -6,6 +6,7 @@ #![deny(unsafe_code)] +use app_units::Au; use context::LayoutContext; use euclid::{Point2D, Rect}; use flow::{BaseFlow, Flow, FlowClass, ForceNonfloatedFlag, OpaqueFlow}; @@ -16,7 +17,7 @@ use std::fmt; use std::sync::Arc; use style::properties::ComputedValues; use style::values::computed::LengthOrPercentageOrAuto; -use util::geometry::{Au, ZERO_RECT}; +use util::geometry::ZERO_RECT; use util::logical_geometry::LogicalSize; /// A table formatting context. |