diff options
Diffstat (limited to 'components/style/dom_apis.rs')
-rw-r--r-- | components/style/dom_apis.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/style/dom_apis.rs b/components/style/dom_apis.rs index 9b613f15057..371c83e7238 100644 --- a/components/style/dom_apis.rs +++ b/components/style/dom_apis.rs @@ -5,17 +5,17 @@ //! Generic implementations of some DOM APIs so they can be shared between Servo //! and Gecko. -use Atom; use context::QuirksMode; use dom::{TDocument, TElement, TNode, TShadowRoot}; use invalidation::element::invalidator::{DescendantInvalidationLists, Invalidation}; use invalidation::element::invalidator::{InvalidationProcessor, InvalidationVector}; -use selectors::{Element, NthIndexCache, SelectorList}; use selectors::attr::CaseSensitivity; use selectors::matching::{self, MatchingContext, MatchingMode}; use selectors::parser::{Combinator, Component, LocalName, SelectorImpl}; +use selectors::{Element, NthIndexCache, SelectorList}; use smallvec::SmallVec; use std::borrow::Borrow; +use Atom; /// <https://dom.spec.whatwg.org/#dom-element-matches> pub fn element_matches<E>( |