diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2016-07-19 20:29:22 +0200 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2016-07-20 08:42:40 +0200 |
commit | 789807b7b09e0742a197c98efd2f81b85b751a57 (patch) | |
tree | e093027760cf23719d9f6b3e279eab46e9b3168f /components/style/selector_impl.rs | |
parent | b2a7e4437391abd92486d5bef879fadadabab162 (diff) | |
download | servo-789807b7b09e0742a197c98efd2f81b85b751a57.tar.gz servo-789807b7b09e0742a197c98efd2f81b85b751a57.zip |
Remove the ComputedValue traits and style_struct_traits
Diffstat (limited to 'components/style/selector_impl.rs')
-rw-r--r-- | components/style/selector_impl.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/components/style/selector_impl.rs b/components/style/selector_impl.rs index 0cd76e3f5b6..4148a3a9328 100644 --- a/components/style/selector_impl.rs +++ b/components/style/selector_impl.rs @@ -5,7 +5,6 @@ //! The pseudo-classes and pseudo-elements supported by the style system. use element_state::ElementState; -use properties; use selectors::Element; use selectors::parser::SelectorImpl; use std::fmt::Debug; @@ -74,8 +73,6 @@ pub trait ElementExt: Element { // NB: The `Clone` trait is here for convenience due to: // https://github.com/rust-lang/rust/issues/26925 pub trait SelectorImplExt : SelectorImpl + Clone + Debug + Sized + 'static { - type ComputedValues: properties::ComputedValues; - fn pseudo_element_cascade_type(pseudo: &Self::PseudoElement) -> PseudoElementCascadeType; fn each_pseudo_element<F>(mut fun: F) |