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/block.rs | |
parent | 63dc161b773775c6755a604ec04b81c0bc479bf3 (diff) | |
download | servo-db8d502f4162df1bee100a1ad96e4673ced0a78c.tar.gz servo-db8d502f4162df1bee100a1ad96e4673ced0a78c.zip |
Move util::logical_geometry to style
Diffstat (limited to 'components/layout/block.rs')
-rw-r--r-- | components/layout/block.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout/block.rs b/components/layout/block.rs index c26cd450b74..05ffa1838f0 100644 --- a/components/layout/block.rs +++ b/components/layout/block.rs @@ -59,11 +59,11 @@ use std::sync::Arc; use style::computed_values::{border_collapse, box_sizing, display, float, overflow_x, overflow_y}; use style::computed_values::{position, text_align, transform_style}; use style::context::StyleContext; +use style::logical_geometry::{LogicalPoint, LogicalRect, LogicalSize, WritingMode}; use style::properties::ComputedValues; use style::values::computed::{LengthOrNone, LengthOrPercentageOrNone}; use style::values::computed::{LengthOrPercentage, LengthOrPercentageOrAuto}; use util::geometry::MAX_RECT; -use util::logical_geometry::{LogicalPoint, LogicalRect, LogicalSize, WritingMode}; use util::opts; use util::print_tree::PrintTree; |