aboutsummaryrefslogtreecommitdiffstats
path: root/components/layout/table_row.rs
diff options
context:
space:
mode:
authorGlenn Watson <gw@intuitionlibrary.com>2015-09-28 16:53:00 +1000
committerGlenn Watson <gw@intuitionlibrary.com>2015-10-01 07:16:11 +1000
commit339a3f869b539ae6da49f5d34568789d0abf3e00 (patch)
tree06790c2e03a77bdbb988361dcf8e0b34b97dec4b /components/layout/table_row.rs
parentfb6d0946cb3bac713bc20794f17a40fa7a12bc00 (diff)
downloadservo-339a3f869b539ae6da49f5d34568789d0abf3e00.tar.gz
servo-339a3f869b539ae6da49f5d34568789d0abf3e00.zip
Split Au type into separate crate, with minimal dependencies.
Diffstat (limited to 'components/layout/table_row.rs')
-rw-r--r--components/layout/table_row.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout/table_row.rs b/components/layout/table_row.rs
index 54b47030eb6..24dde406441 100644
--- a/components/layout/table_row.rs
+++ b/components/layout/table_row.rs
@@ -6,6 +6,7 @@
#![deny(unsafe_code)]
+use app_units::Au;
use block::{BlockFlow, ISizeAndMarginsComputer};
use context::LayoutContext;
use cssparser::{Color, RGBA};
@@ -27,7 +28,6 @@ use style::properties::ComputedValues;
use style::values::computed::LengthOrPercentageOrAuto;
use table::{ColumnComputedInlineSize, ColumnIntrinsicInlineSize, InternalTable, VecExt};
use table_cell::{CollapsedBordersForCell, TableCellFlow};
-use util::geometry::Au;
use util::logical_geometry::{LogicalSize, PhysicalSide, WritingMode};
/// A single row of a table.