diff options
author | UK992 <urbankrajnc92@gmail.com> | 2016-09-08 17:47:32 +0200 |
---|---|---|
committer | UK992 <urbankrajnc92@gmail.com> | 2016-09-09 04:55:19 +0200 |
commit | 93a103ba7306b578841b73a0ecfbccaad8fc78c1 (patch) | |
tree | a8855004b4309212182505b0cf72f116d846c4cb /components/style/servo_selector_impl.rs | |
parent | 875981ece592b03bcf06f16b6613ddabfa11133f (diff) | |
download | servo-93a103ba7306b578841b73a0ecfbccaad8fc78c1.tar.gz servo-93a103ba7306b578841b73a0ecfbccaad8fc78c1.zip |
Reorder `use` statements
Diffstat (limited to 'components/style/servo_selector_impl.rs')
-rw-r--r-- | components/style/servo_selector_impl.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/style/servo_selector_impl.rs b/components/style/servo_selector_impl.rs index 81079f4a416..f54ef9f3870 100644 --- a/components/style/servo_selector_impl.rs +++ b/components/style/servo_selector_impl.rs @@ -7,9 +7,9 @@ use cssparser::ToCss; use element_state::ElementState; use restyle_hints::ElementSnapshot; use selector_impl::{ElementExt, PseudoElementCascadeType, TheSelectorImpl}; -use selector_impl::{attr_exists_selector_is_shareable, attr_equals_selector_is_shareable}; -use selectors::parser::{AttrSelector, ParserContext, SelectorImpl}; +use selector_impl::{attr_equals_selector_is_shareable, attr_exists_selector_is_shareable}; use selectors::{Element, MatchAttrGeneric}; +use selectors::parser::{AttrSelector, ParserContext, SelectorImpl}; use std::fmt; use string_cache::{Atom, Namespace}; |