diff options
author | Anthony Ramine <n.oxyde@gmail.com> | 2016-02-18 02:25:40 +0100 |
---|---|---|
committer | Anthony Ramine <n.oxyde@gmail.com> | 2016-02-18 10:17:13 +0100 |
commit | db8d502f4162df1bee100a1ad96e4673ced0a78c (patch) | |
tree | c3ddfefb8866554efe59337aeb364ec248f90a91 /components/layout/floats.rs | |
parent | 63dc161b773775c6755a604ec04b81c0bc479bf3 (diff) | |
download | servo-db8d502f4162df1bee100a1ad96e4673ced0a78c.tar.gz servo-db8d502f4162df1bee100a1ad96e4673ced0a78c.zip |
Move util::logical_geometry to style
Diffstat (limited to 'components/layout/floats.rs')
-rw-r--r-- | components/layout/floats.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/components/layout/floats.rs b/components/layout/floats.rs index 9385bd69afc..f74b063b2b8 100644 --- a/components/layout/floats.rs +++ b/components/layout/floats.rs @@ -7,8 +7,7 @@ use std::cmp::{max, min}; use std::fmt; use std::i32; use style::computed_values::float; -use util::logical_geometry::WritingMode; -use util::logical_geometry::{LogicalRect, LogicalSize}; +use style::logical_geometry::{LogicalRect, LogicalSize, WritingMode}; use util::persistent_list::PersistentList; /// The kind of float: left or right. |