diff options
author | tigercosmos <b04209032@ntu.edu.tw> | 2017-10-17 16:03:37 +0800 |
---|---|---|
committer | tigercosmos <b04209032@ntu.edu.tw> | 2017-10-17 16:03:37 +0800 |
commit | d5f56917d0d9c964d476168f5f7fa1dea261bfc1 (patch) | |
tree | 8d7294d3619ffa879ce5b42b31735a7961551e38 /components/script/dom | |
parent | ac74cd57a257fc95e0513524e196c91807c18bba (diff) | |
download | servo-d5f56917d0d9c964d476168f5f7fa1dea261bfc1.tar.gz servo-d5f56917d0d9c964d476168f5f7fa1dea261bfc1.zip |
fix unused warning
Diffstat (limited to 'components/script/dom')
-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 a908561b1cc..0cfaf0b420a 100644 --- a/components/script/dom/element.rs +++ b/components/script/dom/element.rs @@ -89,7 +89,7 @@ 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, MatchingContext, MatchingMode, RelevantLinkStatus}; +use selectors::matching::{ElementSelectorFlags, MatchingContext, RelevantLinkStatus}; use selectors::matching::{HAS_EDGE_CHILD_SELECTOR, HAS_SLOW_SELECTOR, HAS_SLOW_SELECTOR_LATER_SIBLINGS}; use selectors::sink::Push; use servo_arc::Arc; |