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/inline.rs | |
parent | 63dc161b773775c6755a604ec04b81c0bc479bf3 (diff) | |
download | servo-db8d502f4162df1bee100a1ad96e4673ced0a78c.tar.gz servo-db8d502f4162df1bee100a1ad96e4673ced0a78c.zip |
Move util::logical_geometry to style
Diffstat (limited to 'components/layout/inline.rs')
-rw-r--r-- | components/layout/inline.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout/inline.rs b/components/layout/inline.rs index d20fb2224a1..c95012a6f2a 100644 --- a/components/layout/inline.rs +++ b/components/layout/inline.rs @@ -27,12 +27,12 @@ use std::sync::Arc; use std::{fmt, isize, mem}; use style::computed_values::{display, overflow_x, position, text_align, text_justify}; use style::computed_values::{text_overflow, vertical_align, white_space}; +use style::logical_geometry::{LogicalRect, LogicalSize, WritingMode}; use style::properties::ComputedValues; use style::values::computed::LengthOrPercentage; use text; use unicode_bidi; use util; -use util::logical_geometry::{LogicalRect, LogicalSize, WritingMode}; use util::print_tree::PrintTree; use util::range::{Range, RangeIndex}; use wrapper::PseudoElementType; |