aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/layout_wrapper.rs
diff options
context:
space:
mode:
authorBobby Holley <bobbyholley@gmail.com>2017-06-17 20:13:12 -0700
committerBobby Holley <bobbyholley@gmail.com>2017-06-20 11:59:10 -0700
commitdb8f59407f93e07111cf2bf0c5d691fcef4e40c9 (patch)
tree26eecb27588f7e3ccb89ad06f15ddd9b7fdd76e2 /components/script/layout_wrapper.rs
parent2159d48382203ebb3deb75358d5cb06e0e55b103 (diff)
downloadservo-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/layout_wrapper.rs')
-rw-r--r--components/script/layout_wrapper.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/layout_wrapper.rs b/components/script/layout_wrapper.rs
index aaaf5cce107..d26493589c2 100644
--- a/components/script/layout_wrapper.rs
+++ b/components/script/layout_wrapper.rs
@@ -52,6 +52,7 @@ use script_layout_interface::wrapper_traits::{PseudoElementType, ThreadSafeLayou
use selectors::attr::{AttrSelectorOperation, NamespaceConstraint, CaseSensitivity};
use selectors::matching::{ElementSelectorFlags, LocalMatchingContext, MatchingContext, RelevantLinkStatus};
use selectors::matching::VisitedHandlingMode;
+use selectors::sink::Push;
use servo_atoms::Atom;
use servo_url::ServoUrl;
use std::fmt;
@@ -75,7 +76,6 @@ use style::properties::{ComputedValues, PropertyDeclarationBlock};
use style::selector_parser::{AttrValue as SelectorAttrValue, NonTSPseudoClass, PseudoClassStringArg};
use style::selector_parser::{PseudoElement, SelectorImpl, extended_filtering};
use style::shared_lock::{SharedRwLock as StyleSharedRwLock, Locked as StyleLocked};
-use style::sink::Push;
use style::str::is_whitespace;
use style::stylearc::Arc;