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/model.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/model.rs')
-rw-r--r-- | components/layout/model.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout/model.rs b/components/layout/model.rs index c7c690f84bf..8ee98a39678 100644 --- a/components/layout/model.rs +++ b/components/layout/model.rs @@ -6,6 +6,7 @@ #![deny(unsafe_code)] +use app_units::Au; use euclid::{Matrix4, SideOffsets2D, Size2D}; use fragment::Fragment; use std::cmp::{max, min}; @@ -14,7 +15,6 @@ use style::computed_values::transform::ComputedMatrix; use style::properties::ComputedValues; use style::values::computed::{BorderRadiusSize, LengthOrPercentageOrAuto}; use style::values::computed::{LengthOrPercentage, LengthOrPercentageOrNone}; -use util::geometry::Au; use util::logical_geometry::LogicalMargin; /// A collapsible margin. See CSS 2.1 § 8.3.1. |