aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/stylepropertymapreadonly.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/script/dom/stylepropertymapreadonly.rs')
-rw-r--r--components/script/dom/stylepropertymapreadonly.rs18
1 files changed, 9 insertions, 9 deletions
diff --git a/components/script/dom/stylepropertymapreadonly.rs b/components/script/dom/stylepropertymapreadonly.rs
index f64c9cfc54a..d2c84b1fecb 100644
--- a/components/script/dom/stylepropertymapreadonly.rs
+++ b/components/script/dom/stylepropertymapreadonly.rs
@@ -2,20 +2,20 @@
* 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 crate::dom::bindings::codegen::Bindings::StylePropertyMapReadOnlyBinding::StylePropertyMapReadOnlyMethods;
-use crate::dom::bindings::reflector::reflect_dom_object;
-use crate::dom::bindings::reflector::Reflector;
-use crate::dom::bindings::root::{Dom, DomRoot};
-use crate::dom::bindings::str::DOMString;
-use crate::dom::cssstylevalue::CSSStyleValue;
-use crate::dom::globalscope::GlobalScope;
-use dom_struct::dom_struct;
-use servo_atoms::Atom;
use std::cmp::Ordering;
use std::iter::Iterator;
+
+use dom_struct::dom_struct;
+use servo_atoms::Atom;
use style::custom_properties;
use super::bindings::trace::HashMapTracedValues;
+use crate::dom::bindings::codegen::Bindings::StylePropertyMapReadOnlyBinding::StylePropertyMapReadOnlyMethods;
+use crate::dom::bindings::reflector::{reflect_dom_object, Reflector};
+use crate::dom::bindings::root::{Dom, DomRoot};
+use crate::dom::bindings::str::DOMString;
+use crate::dom::cssstylevalue::CSSStyleValue;
+use crate::dom::globalscope::GlobalScope;
#[dom_struct]
pub struct StylePropertyMapReadOnly {