diff options
Diffstat (limited to 'components/script/dom/cssimportrule.rs')
-rw-r--r-- | components/script/dom/cssimportrule.rs | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/components/script/dom/cssimportrule.rs b/components/script/dom/cssimportrule.rs index e2da2a04378..857c5cd2909 100644 --- a/components/script/dom/cssimportrule.rs +++ b/components/script/dom/cssimportrule.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::ImportRule; + 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::ImportRule; #[dom_struct] pub struct CSSImportRule { |