diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2016-07-20 00:30:37 +0200 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2016-07-20 08:42:47 +0200 |
commit | 6d0e48f6cc91a3200911e00f3719d8cb7ff6b0c4 (patch) | |
tree | 7e29d51d99283a5d54f46f3b9ee15819e4ad7810 /components/script/dom/htmlstyleelement.rs | |
parent | 5c70dfab01ed434c609177d1b3be4a8936f641d6 (diff) | |
download | servo-6d0e48f6cc91a3200911e00f3719d8cb7ff6b0c4.tar.gz servo-6d0e48f6cc91a3200911e00f3719d8cb7ff6b0c4.zip |
Remove some type aliases that are now just re-exports.
Diffstat (limited to 'components/script/dom/htmlstyleelement.rs')
-rw-r--r-- | components/script/dom/htmlstyleelement.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/components/script/dom/htmlstyleelement.rs b/components/script/dom/htmlstyleelement.rs index e253fab12be..c7cc4cc44a3 100644 --- a/components/script/dom/htmlstyleelement.rs +++ b/components/script/dom/htmlstyleelement.rs @@ -19,8 +19,7 @@ use std::sync::Arc; use string_cache::Atom; use style::media_queries::parse_media_query_list; use style::parser::ParserContextExtraData; -use style::servo::Stylesheet; -use style::stylesheets::Origin; +use style::stylesheets::{Stylesheet, Origin}; #[dom_struct] pub struct HTMLStyleElement { |