diff options
Diffstat (limited to 'components/script/dom/documentfragment.rs')
-rw-r--r-- | components/script/dom/documentfragment.rs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/components/script/dom/documentfragment.rs b/components/script/dom/documentfragment.rs index f2455f61130..c9999ba4f44 100644 --- a/components/script/dom/documentfragment.rs +++ b/components/script/dom/documentfragment.rs @@ -2,6 +2,11 @@ * 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 dom_struct::dom_struct; +use js::rust::HandleObject; +use servo_atoms::Atom; + +use super::bindings::trace::HashMapTracedValues; use crate::dom::bindings::cell::DomRefCell; use crate::dom::bindings::codegen::Bindings::DocumentFragmentBinding::DocumentFragmentMethods; use crate::dom::bindings::codegen::Bindings::WindowBinding::WindowMethods; @@ -16,11 +21,6 @@ use crate::dom::htmlcollection::HTMLCollection; use crate::dom::node::{window_from_node, Node}; use crate::dom::nodelist::NodeList; use crate::dom::window::Window; -use dom_struct::dom_struct; -use js::rust::HandleObject; -use servo_atoms::Atom; - -use super::bindings::trace::HashMapTracedValues; // https://dom.spec.whatwg.org/#documentfragment #[dom_struct] |