aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/layout_interface.rs
diff options
context:
space:
mode:
authorEmilio Cobos Álvarez <ecoal95@gmail.com>2016-01-28 14:42:15 +0100
committerAnthony Ramine <n.oxyde@gmail.com>2016-02-03 02:11:31 +0100
commita1c830f1c13d75186d8d1a759ed73a0eac433179 (patch)
tree3c76ce5a1f9f9926b9a532060581dc88d49a6b36 /components/script/layout_interface.rs
parent9baa59a6b4de338be6cd65851694785d786cf492 (diff)
downloadservo-a1c830f1c13d75186d8d1a759ed73a0eac433179.tar.gz
servo-a1c830f1c13d75186d8d1a759ed73a0eac433179.zip
Update rust-selectors
This commits updates rust-selectors to use the generic parser, and as such it moves the element state into the style crate.
Diffstat (limited to 'components/script/layout_interface.rs')
-rw-r--r--components/script/layout_interface.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/layout_interface.rs b/components/script/layout_interface.rs
index 7c555efcca6..c759b358e79 100644
--- a/components/script/layout_interface.rs
+++ b/components/script/layout_interface.rs
@@ -18,12 +18,12 @@ use net_traits::image_cache_thread::ImageCacheThread;
use profile_traits::mem::ReportsChan;
use script_traits::{ConstellationControlMsg, LayoutControlMsg, LayoutMsg as ConstellationMsg};
use script_traits::{OpaqueScriptLayoutChannel, UntrustedNodeAddress};
-use selectors::parser::PseudoElement;
use std::any::Any;
use std::sync::Arc;
use std::sync::mpsc::{Receiver, Sender, channel};
use string_cache::Atom;
use style::context::ReflowGoal;
+use style::selector_impl::PseudoElement;
use style::stylesheets::Stylesheet;
use url::Url;
use util::ipc::OptionalOpaqueIpcSender;