diff options
author | Bobby Holley <bobbyholley@gmail.com> | 2017-06-17 20:13:12 -0700 |
---|---|---|
committer | Bobby Holley <bobbyholley@gmail.com> | 2017-06-20 11:59:10 -0700 |
commit | db8f59407f93e07111cf2bf0c5d691fcef4e40c9 (patch) | |
tree | 26eecb27588f7e3ccb89ad06f15ddd9b7fdd76e2 /components/script/dom/element.rs | |
parent | 2159d48382203ebb3deb75358d5cb06e0e55b103 (diff) | |
download | servo-db8f59407f93e07111cf2bf0c5d691fcef4e40c9.tar.gz servo-db8f59407f93e07111cf2bf0c5d691fcef4e40c9.zip |
Hoist sink into selectors.
It probably makes more sense (eventually) to put it in SmallVec.
MozReview-Commit-ID: AIBKCLiMNN2
Diffstat (limited to 'components/script/dom/element.rs')
-rw-r--r-- | components/script/dom/element.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/element.rs b/components/script/dom/element.rs index c0570ad83cc..9d522982717 100644 --- a/components/script/dom/element.rs +++ b/components/script/dom/element.rs @@ -89,6 +89,7 @@ use selectors::attr::{AttrSelectorOperation, NamespaceConstraint, CaseSensitivit use selectors::matching::{ElementSelectorFlags, LocalMatchingContext, MatchingContext, MatchingMode}; use selectors::matching::{HAS_EDGE_CHILD_SELECTOR, HAS_SLOW_SELECTOR, HAS_SLOW_SELECTOR_LATER_SIBLINGS}; use selectors::matching::{RelevantLinkStatus, matches_selector_list}; +use selectors::sink::Push; use servo_atoms::Atom; use std::ascii::AsciiExt; use std::borrow::Cow; @@ -109,7 +110,6 @@ use style::rule_tree::CascadeLevel; use style::selector_parser::{NonTSPseudoClass, PseudoElement, RestyleDamage, SelectorImpl, SelectorParser}; use style::selector_parser::extended_filtering; use style::shared_lock::{SharedRwLock, Locked}; -use style::sink::Push; use style::stylearc::Arc; use style::thread_state; use style::values::{CSSFloat, Either}; |