aboutsummaryrefslogtreecommitdiffstats
path: root/components/style/matching.rs
diff options
context:
space:
mode:
authorSimon Sapin <simon.sapin@exyr.org>2016-11-20 14:57:13 +0100
committerSimon Sapin <simon.sapin@exyr.org>2016-11-20 15:29:09 +0100
commit08066800cd1a59e56a84dfb0c87f727401aa55e5 (patch)
treecc53a29cac629c47eeacbf071d45cc3985c872a9 /components/style/matching.rs
parent72e4c6dc21c132d49cf0a5f68a3ba45d16cc8322 (diff)
downloadservo-08066800cd1a59e56a84dfb0c87f727401aa55e5.tar.gz
servo-08066800cd1a59e56a84dfb0c87f727401aa55e5.zip
Rename selector_matching.rs to stylist.rs
Diffstat (limited to 'components/style/matching.rs')
-rw-r--r--components/style/matching.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/style/matching.rs b/components/style/matching.rs
index ca799af62c0..61300f0d3de 100644
--- a/components/style/matching.rs
+++ b/components/style/matching.rs
@@ -18,7 +18,6 @@ use properties::{CascadeFlags, ComputedValues, SHAREABLE, cascade};
use properties::longhands::display::computed_value as display;
use rule_tree::StrongRuleNode;
use selector_impl::{PseudoElement, RestyleDamage, TheSelectorImpl};
-use selector_matching::ApplicableDeclarationBlock;
use selectors::MatchAttr;
use selectors::bloom::BloomFilter;
use selectors::matching::{AFFECTED_BY_PSEUDO_ELEMENTS, MatchingReason, StyleRelations};
@@ -28,6 +27,7 @@ use std::hash::BuildHasherDefault;
use std::mem;
use std::slice::IterMut;
use std::sync::Arc;
+use stylist::ApplicableDeclarationBlock;
use util::opts;
fn create_common_style_affecting_attributes_from_element<E: TElement>(element: &E)