diff options
author | rohan.prinja <rohan.prinja@samsung.com> | 2015-10-30 20:16:27 +0900 |
---|---|---|
committer | rohan.prinja <rohan.prinja@samsung.com> | 2015-10-30 20:28:59 +0900 |
commit | 51df8e310be5157263981e0dd368d10ebc693d49 (patch) | |
tree | 9140b7355c02048c5ac353bf9cef72f5783dfb7d /components/script/dom/document.rs | |
parent | 9fd823e44983fc0de5abc28ee898df6257f0f5d0 (diff) | |
download | servo-51df8e310be5157263981e0dd368d10ebc693d49.tar.gz servo-51df8e310be5157263981e0dd368d10ebc693d49.zip |
rearrange imports to be in alphabetical order
Diffstat (limited to 'components/script/dom/document.rs')
-rw-r--r-- | components/script/dom/document.rs | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/components/script/dom/document.rs b/components/script/dom/document.rs index a41646ab629..cd6ff08b262 100644 --- a/components/script/dom/document.rs +++ b/components/script/dom/document.rs @@ -14,20 +14,18 @@ use dom::bindings::codegen::Bindings::NodeBinding::NodeMethods; use dom::bindings::codegen::Bindings::NodeFilterBinding::NodeFilter; use dom::bindings::codegen::Bindings::PerformanceBinding::PerformanceMethods; use dom::bindings::codegen::Bindings::WindowBinding::WindowMethods; -use dom::bindings::inheritance::{ElementTypeId, HTMLElementTypeId, NodeTypeId}; use dom::bindings::codegen::UnionTypes::NodeOrString; use dom::bindings::error::{Error, ErrorResult, Fallible}; use dom::bindings::global::GlobalRef; -use dom::bindings::inheritance::Castable; +use dom::bindings::inheritance::{Castable, ElementTypeId, HTMLElementTypeId, NodeTypeId}; use dom::bindings::js::RootedReference; use dom::bindings::js::{JS, LayoutJS, MutNullableHeap, Root}; use dom::bindings::num::Finite; use dom::bindings::refcounted::Trusted; +use dom::bindings::reflector::{Reflectable, reflect_dom_object}; use dom::bindings::trace::RootedVec; -use dom::bindings::reflector::reflect_dom_object; -use dom::bindings::reflector::Reflectable; -use dom::bindings::xmlname::{validate_and_extract, xml_name_type}; use dom::bindings::xmlname::XMLName::InvalidXMLName; +use dom::bindings::xmlname::{validate_and_extract, xml_name_type}; use dom::comment::Comment; use dom::customevent::CustomEvent; use dom::documentfragment::DocumentFragment; |