aboutsummaryrefslogtreecommitdiffstats
path: root/components/style/gecko
diff options
context:
space:
mode:
Diffstat (limited to 'components/style/gecko')
-rw-r--r--components/style/gecko/data.rs2
-rw-r--r--components/style/gecko/wrapper.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/components/style/gecko/data.rs b/components/style/gecko/data.rs
index 2f6ed96c71f..da334bfa4bf 100644
--- a/components/style/gecko/data.rs
+++ b/components/style/gecko/data.rs
@@ -12,7 +12,6 @@ use media_queries::{Device, MediaType};
use num_cpus;
use parking_lot::RwLock;
use rayon;
-use selector_matching::Stylist;
use std::cmp;
use std::collections::HashMap;
use std::env;
@@ -20,6 +19,7 @@ use std::sync::Arc;
use std::sync::mpsc::{Receiver, Sender, channel};
use style_traits::ViewportPx;
use stylesheets::Stylesheet;
+use stylist::Stylist;
pub struct PerDocumentStyleDataImpl {
/// Rule processor.
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