diff options
author | Johann Tuffe <tafia973@gmail.com> | 2015-08-20 20:47:12 +0800 |
---|---|---|
committer | Johann Tuffe <tafia973@gmail.com> | 2015-08-20 20:47:12 +0800 |
commit | ec07178b6fc5a0ab559eb191952101cf92b5d666 (patch) | |
tree | f7550ec6d7623b57b29d3030686f4fdb609f0b36 /components/layout/construct.rs | |
parent | d3c7e31722fb194f1a266eec9ae57d2f2557e7a6 (diff) | |
download | servo-ec07178b6fc5a0ab559eb191952101cf92b5d666.tar.gz servo-ec07178b6fc5a0ab559eb191952101cf92b5d666.zip |
sort all uses
Diffstat (limited to 'components/layout/construct.rs')
-rw-r--r-- | components/layout/construct.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/components/layout/construct.rs b/components/layout/construct.rs index 60a547094b0..a53f0d0b209 100644 --- a/components/layout/construct.rs +++ b/components/layout/construct.rs @@ -17,11 +17,11 @@ use block::BlockFlow; use context::LayoutContext; use data::{HAS_NEWLY_CONSTRUCTED_FLOW, LayoutDataWrapper}; use floats::FloatKind; -use flow::{self, AbsoluteDescendants, Flow, ImmutableFlowUtils, IS_ABSOLUTELY_POSITIONED}; use flow::{MutableFlowUtils, MutableOwnedFlowUtils}; +use flow::{self, AbsoluteDescendants, Flow, ImmutableFlowUtils, IS_ABSOLUTELY_POSITIONED}; use flow_ref::FlowRef; -use fragment::{Fragment, GeneratedContentInfo, IframeFragmentInfo}; use fragment::{CanvasFragmentInfo, ImageFragmentInfo, InlineAbsoluteFragmentInfo}; +use fragment::{Fragment, GeneratedContentInfo, IframeFragmentInfo}; use fragment::{InlineAbsoluteHypotheticalFragmentInfo, TableColumnFragmentInfo}; use fragment::{InlineBlockFragmentInfo, SpecificFragmentInfo, UnscannedTextFragmentInfo}; use fragment::{WhitespaceStrippingResult}; @@ -1729,8 +1729,8 @@ pub fn strip_ignorable_whitespace_from_end(this: &mut LinkedList<Fragment>) { /// If the 'unicode-bidi' property has a value other than 'normal', return the bidi control codes /// to inject before and after the text content of the element. fn bidi_control_chars(style: &Arc<ComputedValues>) -> Option<(&'static str, &'static str)> { - use style::computed_values::unicode_bidi::T::*; use style::computed_values::direction::T::*; + use style::computed_values::unicode_bidi::T::*; let unicode_bidi = style.get_text().unicode_bidi; let direction = style.get_inheritedbox().direction; |