aboutsummaryrefslogtreecommitdiffstats
path: root/components/layout/table.rs
diff options
context:
space:
mode:
authorSimon Sapin <simon.sapin@exyr.org>2015-01-28 21:46:51 +0100
committerSimon Sapin <simon.sapin@exyr.org>2015-01-30 15:08:29 +0100
commitd13d36f57f4da7d51bfce0bcefc0d52fdacfb693 (patch)
treeb3abfe85110129dcc762591aef6dc8b24b167081 /components/layout/table.rs
parent493a9e6a89d1f70374cfd27052819d61be305ba0 (diff)
downloadservo-d13d36f57f4da7d51bfce0bcefc0d52fdacfb693.tar.gz
servo-d13d36f57f4da7d51bfce0bcefc0d52fdacfb693.zip
End the libstyle 'pub use' madness.
Diffstat (limited to 'components/layout/table.rs')
-rw-r--r--components/layout/table.rs6
1 files changed, 4 insertions, 2 deletions
diff --git a/components/layout/table.rs b/components/layout/table.rs
index 533d5166dbd..791ce834ccd 100644
--- a/components/layout/table.rs
+++ b/components/layout/table.rs
@@ -25,8 +25,10 @@ use servo_util::geometry::Au;
use servo_util::logical_geometry::LogicalRect;
use std::cmp::max;
use std::fmt;
-use style::{ComputedValues, CSSFloat};
-use style::computed_values::{LengthOrPercentageOrAuto, table_layout};
+use style::properties::ComputedValues;
+use style::values::CSSFloat;
+use style::values::computed::{LengthOrPercentageOrAuto};
+use style::computed_values::table_layout;
use std::sync::Arc;
/// A table flow corresponded to the table's internal table fragment under a table wrapper flow.