diff options
author | Manish Goregaokar <manishsmail@gmail.com> | 2016-09-22 16:05:14 +0530 |
---|---|---|
committer | Manish Goregaokar <manishsmail@gmail.com> | 2016-09-24 19:25:59 +0530 |
commit | bc9cbc87ba242ba49075dcd997f755b620196fb3 (patch) | |
tree | 134b3daa9b7820b7898bfcf096247fe22c7c133a /components/style/selector_impl.rs | |
parent | c6787458d925196bfc495b9862299a31301dd62e (diff) | |
download | servo-bc9cbc87ba242ba49075dcd997f755b620196fb3.tar.gz servo-bc9cbc87ba242ba49075dcd997f755b620196fb3.zip |
Move gecko_* into style::gecko
Prepping for the next stage where most of geckolib/ is popped in here
Diffstat (limited to 'components/style/selector_impl.rs')
-rw-r--r-- | components/style/selector_impl.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/style/selector_impl.rs b/components/style/selector_impl.rs index 6c38fecec63..6facc88fec0 100644 --- a/components/style/selector_impl.rs +++ b/components/style/selector_impl.rs @@ -18,10 +18,10 @@ pub use servo_selector_impl::*; pub use servo_selector_impl::{ServoSelectorImpl as TheSelectorImpl, ServoElementSnapshot as ElementSnapshot}; #[cfg(feature = "gecko")] -pub use gecko_selector_impl::*; +pub use gecko::selector_impl::*; #[cfg(feature = "gecko")] -pub use gecko_selector_impl::{GeckoSelectorImpl as TheSelectorImpl}; +pub use gecko::selector_impl::{GeckoSelectorImpl as TheSelectorImpl}; /// This function determines if a pseudo-element is eagerly cascaded or not. /// |