diff options
Diffstat (limited to 'components/layout/list_item.rs')
-rw-r--r-- | components/layout/list_item.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/components/layout/list_item.rs b/components/layout/list_item.rs index a81f1f2e623..b0c3702f2c2 100644 --- a/components/layout/list_item.rs +++ b/components/layout/list_item.rs @@ -20,12 +20,12 @@ use text; use euclid::{Point2D, Rect}; use gfx::display_list::DisplayList; +use std::sync::Arc; +use style::computed_values::{list_style_type, position}; +use style::properties::ComputedValues; use util::geometry::Au; use util::logical_geometry::LogicalSize; use util::opts; -use style::properties::ComputedValues; -use style::computed_values::{list_style_type, position}; -use std::sync::Arc; /// A block with the CSS `display` property equal to `list-item`. #[derive(Debug)] |