aboutsummaryrefslogtreecommitdiffstats
path: root/components/layout/sequential.rs
diff options
context:
space:
mode:
authorbors-servo <metajack+bors@gmail.com>2015-08-20 07:43:56 -0600
committerbors-servo <metajack+bors@gmail.com>2015-08-20 07:43:56 -0600
commita5fbb2f2a6fa79755f975feff2435abb6a5dd0e9 (patch)
treecad46937c5718a69cea6c85f1bd0f4bd259c10f0 /components/layout/sequential.rs
parentc98c1651a329d152b436d017e15546f9b922fe93 (diff)
parent009f6f63ad45164b7ef7fbc6322d421143c03185 (diff)
downloadservo-a5fbb2f2a6fa79755f975feff2435abb6a5dd0e9.tar.gz
servo-a5fbb2f2a6fa79755f975feff2435abb6a5dd0e9.zip
Auto merge of #7265 - tafia:tidy-use, r=Ms2ger
Add alphabetical order check for use statements close #7112 <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/7265) <!-- Reviewable:end -->
Diffstat (limited to 'components/layout/sequential.rs')
-rw-r--r--components/layout/sequential.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/components/layout/sequential.rs b/components/layout/sequential.rs
index 573d35a7b67..51d8f39e59e 100644
--- a/components/layout/sequential.rs
+++ b/components/layout/sequential.rs
@@ -5,16 +5,16 @@
//! Implements sequential traversals over the DOM and flow trees.
use context::{LayoutContext, SharedLayoutContext};
-use flow::{self, Flow, ImmutableFlowUtils, InorderFlowTraversal, MutableFlowUtils};
use flow::{PostorderFlowTraversal, PreorderFlowTraversal};
+use flow::{self, Flow, ImmutableFlowUtils, InorderFlowTraversal, MutableFlowUtils};
use flow_ref::FlowRef;
use fragment::FragmentBorderBoxIterator;
use generated_content::ResolveGeneratedContent;
-use traversal::{PreorderDomTraversal, PostorderDomTraversal};
use traversal::PostorderNodeMutTraversal;
-use traversal::{BubbleISizes, RecalcStyleForNode, ConstructFlows};
use traversal::{AssignBSizesAndStoreOverflow, AssignISizes};
+use traversal::{BubbleISizes, RecalcStyleForNode, ConstructFlows};
use traversal::{ComputeAbsolutePositions, BuildDisplayList};
+use traversal::{PreorderDomTraversal, PostorderDomTraversal};
use wrapper::LayoutNode;
use euclid::point::Point2D;