aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/bindings/utils.rs
diff options
context:
space:
mode:
authorrohan.prinja <rohan.prinja@samsung.com>2015-10-30 20:16:27 +0900
committerrohan.prinja <rohan.prinja@samsung.com>2015-10-30 20:28:59 +0900
commit51df8e310be5157263981e0dd368d10ebc693d49 (patch)
tree9140b7355c02048c5ac353bf9cef72f5783dfb7d /components/script/dom/bindings/utils.rs
parent9fd823e44983fc0de5abc28ee898df6257f0f5d0 (diff)
downloadservo-51df8e310be5157263981e0dd368d10ebc693d49.tar.gz
servo-51df8e310be5157263981e0dd368d10ebc693d49.zip
rearrange imports to be in alphabetical order
Diffstat (limited to 'components/script/dom/bindings/utils.rs')
-rw-r--r--components/script/dom/bindings/utils.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/bindings/utils.rs b/components/script/dom/bindings/utils.rs
index ca3be0bc00a..98836d7fe7d 100644
--- a/components/script/dom/bindings/utils.rs
+++ b/components/script/dom/bindings/utils.rs
@@ -4,7 +4,6 @@
//! Various utilities to glue JavaScript and the DOM implementation together.
-use dom::bindings::inheritance::TopTypeId;
use dom::bindings::codegen::PrototypeList;
use dom::bindings::codegen::PrototypeList::MAX_PROTO_CHAIN_LENGTH;
use dom::bindings::conversions::native_from_handleobject;
@@ -13,6 +12,7 @@ use dom::bindings::conversions::{is_dom_class, jsstring_to_str, DOM_OBJECT_SLOT}
use dom::bindings::error::throw_type_error;
use dom::bindings::error::{Error, ErrorResult, Fallible, throw_invalid_this};
use dom::bindings::global::GlobalRef;
+use dom::bindings::inheritance::TopTypeId;
use dom::bindings::js::Root;
use dom::bindings::trace::trace_object;
use dom::browsercontext;