aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/domrectreadonly.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/script/dom/domrectreadonly.rs')
-rw-r--r--components/script/dom/domrectreadonly.rs8
1 files changed, 5 insertions, 3 deletions
diff --git a/components/script/dom/domrectreadonly.rs b/components/script/dom/domrectreadonly.rs
index 09461954285..8deb6fd5c5c 100644
--- a/components/script/dom/domrectreadonly.rs
+++ b/components/script/dom/domrectreadonly.rs
@@ -2,14 +2,16 @@
* 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 std::cell::Cell;
+
+use dom_struct::dom_struct;
+use js::rust::HandleObject;
+
use crate::dom::bindings::codegen::Bindings::DOMRectReadOnlyBinding::DOMRectReadOnlyMethods;
use crate::dom::bindings::error::Fallible;
use crate::dom::bindings::reflector::{reflect_dom_object_with_proto, Reflector};
use crate::dom::bindings::root::DomRoot;
use crate::dom::globalscope::GlobalScope;
-use dom_struct::dom_struct;
-use js::rust::HandleObject;
-use std::cell::Cell;
#[dom_struct]
pub struct DOMRectReadOnly {