diff options
Diffstat (limited to 'components/style/dom.rs')
-rw-r--r-- | components/style/dom.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/style/dom.rs b/components/style/dom.rs index 872a55a54b2..3d2b05de7dc 100644 --- a/components/style/dom.rs +++ b/components/style/dom.rs @@ -7,7 +7,6 @@ #![allow(unsafe_code)] #![deny(missing_docs)] -use {Atom, LocalName, Namespace, WeakAtom}; use applicable_declarations::ApplicableDeclarationBlock; use atomic_refcell::{AtomicRef, AtomicRefCell, AtomicRefMut}; #[cfg(feature = "gecko")] @@ -20,9 +19,9 @@ use font_metrics::FontMetricsProvider; use media_queries::Device; use properties::{AnimationRules, ComputedValues, PropertyDeclarationBlock}; use selector_parser::{AttrValue, Lang, PseudoElement, SelectorImpl}; -use selectors::Element as SelectorsElement; use selectors::matching::{ElementSelectorFlags, QuirksMode, VisitedHandlingMode}; use selectors::sink::Push; +use selectors::Element as SelectorsElement; use servo_arc::{Arc, ArcBorrow}; use shared_lock::Locked; use std::fmt; @@ -31,6 +30,7 @@ use std::hash::Hash; use std::ops::Deref; use stylist::CascadeData; use traversal_flags::TraversalFlags; +use {Atom, LocalName, Namespace, WeakAtom}; /// An opaque handle to a node, which, unlike UnsafeNode, cannot be transformed /// back into a non-opaque representation. The only safe operation that can be |