Move gecko_* into style::gecko

Prepping for the next stage where most of geckolib/ is popped in here
This commit is contained in:
Manish Goregaokar 2016-09-22 16:05:14 +05:30
parent c6787458d9
commit bc9cbc87ba
8 changed files with 14 additions and 16 deletions

View file

@ -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.
///