diff options
Diffstat (limited to 'components/script/dom/cssfontfacerule.rs')
-rw-r--r-- | components/script/dom/cssfontfacerule.rs | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/components/script/dom/cssfontfacerule.rs b/components/script/dom/cssfontfacerule.rs index 679ec525383..edd175753c0 100644 --- a/components/script/dom/cssfontfacerule.rs +++ b/components/script/dom/cssfontfacerule.rs @@ -2,16 +2,17 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ +use dom_struct::dom_struct; +use servo_arc::Arc; +use style::shared_lock::{Locked, ToCssWithGuard}; +use style::stylesheets::FontFaceRule; + use crate::dom::bindings::reflector::reflect_dom_object; use crate::dom::bindings::root::DomRoot; use crate::dom::bindings::str::DOMString; use crate::dom::cssrule::{CSSRule, SpecificCSSRule}; use crate::dom::cssstylesheet::CSSStyleSheet; use crate::dom::window::Window; -use dom_struct::dom_struct; -use servo_arc::Arc; -use style::shared_lock::{Locked, ToCssWithGuard}; -use style::stylesheets::FontFaceRule; #[dom_struct] pub struct CSSFontFaceRule { |