diff options
author | UK992 <urbankrajnc92@gmail.com> | 2016-09-08 17:47:32 +0200 |
---|---|---|
committer | UK992 <urbankrajnc92@gmail.com> | 2016-09-09 04:55:19 +0200 |
commit | 93a103ba7306b578841b73a0ecfbccaad8fc78c1 (patch) | |
tree | a8855004b4309212182505b0cf72f116d846c4cb /components/script/dom/domimplementation.rs | |
parent | 875981ece592b03bcf06f16b6613ddabfa11133f (diff) | |
download | servo-93a103ba7306b578841b73a0ecfbccaad8fc78c1.tar.gz servo-93a103ba7306b578841b73a0ecfbccaad8fc78c1.zip |
Reorder `use` statements
Diffstat (limited to 'components/script/dom/domimplementation.rs')
-rw-r--r-- | components/script/dom/domimplementation.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/domimplementation.rs b/components/script/dom/domimplementation.rs index 824cc0b88cf..dd55630204c 100644 --- a/components/script/dom/domimplementation.rs +++ b/components/script/dom/domimplementation.rs @@ -13,9 +13,9 @@ use dom::bindings::inheritance::Castable; use dom::bindings::js::{JS, Root}; use dom::bindings::reflector::{Reflector, reflect_dom_object}; use dom::bindings::str::DOMString; -use dom::bindings::xmlname::{validate_qualified_name, namespace_from_domstring}; -use dom::document::DocumentSource; +use dom::bindings::xmlname::{namespace_from_domstring, validate_qualified_name}; use dom::document::{Document, IsHTMLDocument}; +use dom::document::DocumentSource; use dom::documenttype::DocumentType; use dom::htmlbodyelement::HTMLBodyElement; use dom::htmlheadelement::HTMLHeadElement; |