diff options
Diffstat (limited to 'components/layout/floats.rs')
-rw-r--r-- | components/layout/floats.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout/floats.rs b/components/layout/floats.rs index f74b063b2b8..44704b22230 100644 --- a/components/layout/floats.rs +++ b/components/layout/floats.rs @@ -3,12 +3,12 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ use app_units::Au; +use persistent_list::PersistentList; use std::cmp::{max, min}; use std::fmt; use std::i32; use style::computed_values::float; use style::logical_geometry::{LogicalRect, LogicalSize, WritingMode}; -use util::persistent_list::PersistentList; /// The kind of float: left or right. #[derive(Clone, RustcEncodable, Debug, Copy)] |