diff options
Diffstat (limited to 'components/style/selector_matching.rs')
-rw-r--r-- | components/style/selector_matching.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/components/style/selector_matching.rs b/components/style/selector_matching.rs index 666d8753b8c..4cf0f7f2846 100644 --- a/components/style/selector_matching.rs +++ b/components/style/selector_matching.rs @@ -4,15 +4,15 @@ use url::Url; +use selectors::Element; use selectors::bloom::BloomFilter; -use selectors::matching::{SelectorMap, Rule}; use selectors::matching::DeclarationBlock as GenericDeclarationBlock; +use selectors::matching::{SelectorMap, Rule}; use selectors::parser::PseudoElement; -use selectors::Element; -use std::process; use smallvec::VecLike; -use util::resource_files::read_resource_file; +use std::process; use util::opts; +use util::resource_files::read_resource_file; use legacy::PresentationalHintSynthesis; use media_queries::Device; |