diff options
Diffstat (limited to 'components/layout/fragment.rs')
-rw-r--r-- | components/layout/fragment.rs | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/components/layout/fragment.rs b/components/layout/fragment.rs index f4a95e64108..5981f13b7ab 100644 --- a/components/layout/fragment.rs +++ b/components/layout/fragment.rs @@ -10,8 +10,7 @@ use canvas_traits::CanvasMsg; use context::LayoutContext; use euclid::{Point2D, Rect, Size2D}; use floats::ClearType; -use flow; -use flow::Flow; +use flow::{self, Flow}; use flow_ref::{self, FlowRef}; use gfx; use gfx::display_list::{BLUR_INFLATION_FACTOR, OpaqueNode}; @@ -45,7 +44,7 @@ use text::TextRunScanner; use url::Url; use util; use util::geometry::{Au, ZERO_POINT}; -use util::logical_geometry::{LogicalRect, LogicalSize, LogicalMargin, WritingMode}; +use util::logical_geometry::{LogicalMargin, LogicalRect, LogicalSize, WritingMode}; use util::range::*; use util::str::{is_whitespace, slice_chars}; use wrapper::{PseudoElementType, ThreadSafeLayoutNode}; @@ -2550,4 +2549,3 @@ bitflags! { const HAS_LAYER = 0x01, } } - |