This commit is contained in:
Simon Sapin 2017-03-17 01:16:49 +01:00
parent 600152bd00
commit b213daaa88
2 changed files with 2 additions and 2 deletions

View file

@ -12,8 +12,8 @@ use dom::window::Window;
use dom_struct::dom_struct; use dom_struct::dom_struct;
use parking_lot::RwLock; use parking_lot::RwLock;
use std::sync::Arc; use std::sync::Arc;
use style::shared_lock::ToCssWithGuard;
use style::font_face::FontFaceRule; use style::font_face::FontFaceRule;
use style::shared_lock::ToCssWithGuard;
#[dom_struct] #[dom_struct]
pub struct CSSFontFaceRule { pub struct CSSFontFaceRule {

View file

@ -13,9 +13,9 @@ use dom::cssstylesheet::CSSStyleSheet;
use dom::window::Window; use dom::window::Window;
use dom_struct::dom_struct; use dom_struct::dom_struct;
use std::sync::Arc; use std::sync::Arc;
use style::shared_lock::{SharedRwLock, Locked};
use style::media_queries::{MediaQuery, parse_media_query_list}; use style::media_queries::{MediaQuery, parse_media_query_list};
use style::media_queries::MediaList as StyleMediaList; use style::media_queries::MediaList as StyleMediaList;
use style::shared_lock::{SharedRwLock, Locked};
use style_traits::ToCss; use style_traits::ToCss;
#[dom_struct] #[dom_struct]