diff options
Diffstat (limited to 'components/style/author_styles.rs')
-rw-r--r-- | components/style/author_styles.rs | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/components/style/author_styles.rs b/components/style/author_styles.rs index 837569078c0..3855a9d561f 100644 --- a/components/style/author_styles.rs +++ b/components/style/author_styles.rs @@ -5,16 +5,16 @@ //! A set of author stylesheets and their computed representation, such as the //! ones used for ShadowRoot and XBL. -use context::QuirksMode; -use dom::TElement; +use crate::context::QuirksMode; +use crate::dom::TElement; +use crate::invalidation::media_queries::ToMediaListKey; +use crate::media_queries::Device; +use crate::shared_lock::SharedRwLockReadGuard; +use crate::stylesheet_set::AuthorStylesheetSet; +use crate::stylesheets::StylesheetInDocument; +use crate::stylist::CascadeData; #[cfg(feature = "gecko")] use gecko_bindings::sugar::ownership::{HasBoxFFI, HasFFI, HasSimpleFFI}; -use invalidation::media_queries::ToMediaListKey; -use media_queries::Device; -use shared_lock::SharedRwLockReadGuard; -use stylesheet_set::AuthorStylesheetSet; -use stylesheets::StylesheetInDocument; -use stylist::CascadeData; /// A set of author stylesheets and their computed representation, such as the /// ones used for ShadowRoot and XBL. |