diff options
author | Manish Goregaokar <manishsmail@gmail.com> | 2015-01-28 13:46:00 +0530 |
---|---|---|
committer | Manish Goregaokar <manishsmail@gmail.com> | 2015-01-28 13:46:00 +0530 |
commit | b68b7e87c8a4729ca1e8c22e88bdb6581c940cb7 (patch) | |
tree | bee923d2b407057833f835c379a39dfa3f7a79cc /components/layout/construct.rs | |
parent | e44ee70faff95763185a64544907a88466fa94a8 (diff) | |
download | servo-b68b7e87c8a4729ca1e8c22e88bdb6581c940cb7.tar.gz servo-b68b7e87c8a4729ca1e8c22e88bdb6581c940cb7.zip |
self import
Diffstat (limited to 'components/layout/construct.rs')
-rw-r--r-- | components/layout/construct.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/layout/construct.rs b/components/layout/construct.rs index d67d1e44753..b877d4245f2 100644 --- a/components/layout/construct.rs +++ b/components/layout/construct.rs @@ -31,7 +31,7 @@ use fragment::TableColumnFragmentInfo; use fragment::UnscannedTextFragmentInfo; use incremental::{RECONSTRUCT_FLOW, RestyleDamage}; use inline::InlineFlow; -use list_item::{mod, ListItemFlow}; +use list_item::{self, ListItemFlow}; use parallel; use table_wrapper::TableWrapperFlow; use table::TableFlow; @@ -56,7 +56,7 @@ use std::mem; use std::sync::atomic::Ordering; use style::computed_values::{caption_side, display, empty_cells, float, list_style_position}; use style::computed_values::{position}; -use style::{mod, ComputedValues}; +use style::{self, ComputedValues}; use std::sync::Arc; use url::Url; |