diff options
Diffstat (limited to 'components/layout/fragment.rs')
-rw-r--r-- | components/layout/fragment.rs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/components/layout/fragment.rs b/components/layout/fragment.rs index 205e7324d12..4d66a76b582 100644 --- a/components/layout/fragment.rs +++ b/components/layout/fragment.rs @@ -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; |