diff options
Diffstat (limited to 'components/layout/fragment.rs')
-rw-r--r-- | components/layout/fragment.rs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/components/layout/fragment.rs b/components/layout/fragment.rs index 3fba0974bdf..4d66a76b582 100644 --- a/components/layout/fragment.rs +++ b/components/layout/fragment.rs @@ -20,7 +20,7 @@ use layout_debug; use model::{IntrinsicISizes, IntrinsicISizesContribution, MaybeAuto, specified}; use model; use text; -use util::OpaqueNodeMethods; +use opaque_node::OpaqueNodeMethods; use wrapper::{TLayoutNode, ThreadSafeLayoutNode}; use geom::num::Zero; @@ -33,11 +33,11 @@ use rustc_serialize::{Encodable, Encoder}; use msg::constellation_msg::{ConstellationChan, Msg, PipelineId, SubpageId}; use net::image::holder::ImageHolder; use net::local_image_cache::LocalImageCache; -use servo_util::geometry::{self, Au, ZERO_POINT}; -use servo_util::logical_geometry::{LogicalRect, LogicalSize, LogicalMargin}; -use servo_util::range::*; -use servo_util::smallvec::SmallVec; -use servo_util::str::is_whitespace; +use util::geometry::{self, Au, ZERO_POINT}; +use util::logical_geometry::{LogicalRect, LogicalSize, LogicalMargin}; +use util::range::*; +use util::smallvec::SmallVec; +use util::str::is_whitespace; use std::borrow::ToOwned; use std::cmp::{max, min}; use std::collections::DList; |