diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2017-10-13 21:57:26 +0200 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2017-10-13 21:57:26 +0200 |
commit | 4c5d6fd8345f301be4aafe2dba71cdf2de0ab01e (patch) | |
tree | 881341254f1ae79cc9ae961fbfba01ec1bfd4af7 /components/script/dom/element.rs | |
parent | e7c53d4ca22cbc51bdd2657a26575f306df97cb9 (diff) | |
download | servo-4c5d6fd8345f301be4aafe2dba71cdf2de0ab01e.tar.gz servo-4c5d6fd8345f301be4aafe2dba71cdf2de0ab01e.zip |
Remove an unused import, fix a warning.
Diffstat (limited to 'components/script/dom/element.rs')
-rw-r--r-- | components/script/dom/element.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/components/script/dom/element.rs b/components/script/dom/element.rs index ee5682b561a..f6e5357df10 100644 --- a/components/script/dom/element.rs +++ b/components/script/dom/element.rs @@ -89,9 +89,8 @@ use script_layout_interface::message::ReflowGoal; use script_thread::ScriptThread; use selectors::Element as SelectorsElement; use selectors::attr::{AttrSelectorOperation, NamespaceConstraint, CaseSensitivity}; -use selectors::matching::{ElementSelectorFlags, LocalMatchingContext, MatchingContext, MatchingMode}; +use selectors::matching::{ElementSelectorFlags, LocalMatchingContext, MatchingContext, RelevantLinkStatus}; 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_arc::Arc; use servo_atoms::Atom; |