aboutsummaryrefslogtreecommitdiffstats
path: root/components/layout/construct.rs
diff options
context:
space:
mode:
authorbors-servo <metajack+bors@gmail.com>2015-03-05 11:09:58 -0700
committerbors-servo <metajack+bors@gmail.com>2015-03-05 11:09:58 -0700
commit7fc37dfaa76c9265e6d2145fe5ef2fba5f6bd013 (patch)
tree48e10efbc7e3389b88d53666bd2e1b92ec198da0 /components/layout/construct.rs
parentcaf5663e0981f36a621dde1dd51be2bd0a15dd24 (diff)
parent559ff68b31eabdf1025fba2fcc386b504256a0b2 (diff)
downloadservo-7fc37dfaa76c9265e6d2145fe5ef2fba5f6bd013.tar.gz
servo-7fc37dfaa76c9265e6d2145fe5ef2fba5f6bd013.zip
auto merge of #5135 : iamdanfox/servo/fix-5120-rename-layout-util, r=jdm
A simple rename/refactor (https://github.com/servo/servo/issues/5120) My first servo contribution!
Diffstat (limited to 'components/layout/construct.rs')
-rw-r--r--components/layout/construct.rs21
1 files changed, 11 insertions, 10 deletions
diff --git a/components/layout/construct.rs b/components/layout/construct.rs
index c7e56426adc..b8dd5a8415e 100644
--- a/components/layout/construct.rs
+++ b/components/layout/construct.rs
@@ -13,35 +13,36 @@
#![deny(unsafe_blocks)]
-use css::node_style::StyledNode;
use block::BlockFlow;
use context::LayoutContext;
+use css::node_style::StyledNode;
use floats::FloatKind;
-use flow::{Flow, ImmutableFlowUtils, MutableOwnedFlowUtils};
use flow::{Descendants, AbsDescendants};
+use flow::{Flow, ImmutableFlowUtils, MutableOwnedFlowUtils};
use flow::{IS_ABSOLUTELY_POSITIONED};
use flow;
use flow_ref::FlowRef;
-use fragment::{Fragment, IframeFragmentInfo};
-use fragment::ImageFragmentInfo;
use fragment::CanvasFragmentInfo;
+use fragment::ImageFragmentInfo;
use fragment::InlineAbsoluteHypotheticalFragmentInfo;
-use fragment::{InlineBlockFragmentInfo, SpecificFragmentInfo};
use fragment::TableColumnFragmentInfo;
use fragment::UnscannedTextFragmentInfo;
+use fragment::{Fragment, IframeFragmentInfo};
+use fragment::{InlineBlockFragmentInfo, SpecificFragmentInfo};
use incremental::{RECONSTRUCT_FLOW, RestyleDamage};
use inline::InlineFlow;
+use data::{HAS_NEWLY_CONSTRUCTED_FLOW, LayoutDataAccess, LayoutDataWrapper};
use list_item::{self, ListItemFlow};
+use opaque_node::OpaqueNodeMethods;
use parallel;
-use table_wrapper::TableWrapperFlow;
use table::TableFlow;
use table_caption::TableCaptionFlow;
+use table_cell::TableCellFlow;
use table_colgroup::TableColGroupFlow;
-use table_rowgroup::TableRowGroupFlow;
use table_row::TableRowFlow;
-use table_cell::TableCellFlow;
+use table_rowgroup::TableRowGroupFlow;
+use table_wrapper::TableWrapperFlow;
use text::TextRunScanner;
-use util::{HAS_NEWLY_CONSTRUCTED_FLOW, LayoutDataAccess, OpaqueNodeMethods, LayoutDataWrapper};
use wrapper::{PostorderNodeMutTraversal, PseudoElementType, TLayoutNode, ThreadSafeLayoutNode};
use gfx::display_list::OpaqueNode;
@@ -49,7 +50,7 @@ use script::dom::element::ElementTypeId;
use script::dom::htmlelement::HTMLElementTypeId;
use script::dom::htmlobjectelement::is_image_data;
use script::dom::node::NodeTypeId;
-use servo_util::opts;
+use util::opts;
use std::borrow::ToOwned;
use std::collections::DList;
use std::mem;