diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2016-11-20 14:57:13 +0100 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2016-11-20 15:29:09 +0100 |
commit | 08066800cd1a59e56a84dfb0c87f727401aa55e5 (patch) | |
tree | cc53a29cac629c47eeacbf071d45cc3985c872a9 /components/style/gecko/wrapper.rs | |
parent | 72e4c6dc21c132d49cf0a5f68a3ba45d16cc8322 (diff) | |
download | servo-08066800cd1a59e56a84dfb0c87f727401aa55e5.tar.gz servo-08066800cd1a59e56a84dfb0c87f727401aa55e5.zip |
Rename selector_matching.rs to stylist.rs
Diffstat (limited to 'components/style/gecko/wrapper.rs')
-rw-r--r-- | components/style/gecko/wrapper.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/style/gecko/wrapper.rs b/components/style/gecko/wrapper.rs index 8dd2257461c..b5d64512104 100644 --- a/components/style/gecko/wrapper.rs +++ b/components/style/gecko/wrapper.rs @@ -33,7 +33,6 @@ use parser::ParserContextExtraData; use properties::{ComputedValues, parse_style_attribute}; use properties::PropertyDeclarationBlock; use selector_impl::ElementExt; -use selector_matching::ApplicableDeclarationBlock; use selectors::Element; use selectors::parser::{AttrSelector, NamespaceConstraint}; use servo_url::ServoUrl; @@ -42,6 +41,7 @@ use std::fmt; use std::ptr; use std::sync::Arc; use string_cache::{Atom, Namespace, WeakAtom, WeakNamespace}; +use stylist::ApplicableDeclarationBlock; // Important: We don't currently refcount the DOM, because the wrapper lifetime // magic guarantees that our LayoutFoo references won't outlive the root, and |