aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/document_loader.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/script/document_loader.rs')
-rw-r--r--components/script/document_loader.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/components/script/document_loader.rs b/components/script/document_loader.rs
index 7dc2d6201fb..02a33a0ce74 100644
--- a/components/script/document_loader.rs
+++ b/components/script/document_loader.rs
@@ -6,15 +6,15 @@
//!
//! <https://html.spec.whatwg.org/multipage/#the-end>
-use crate::dom::bindings::root::Dom;
-use crate::dom::document::Document;
-use crate::fetch::FetchCanceller;
use ipc_channel::ipc::IpcSender;
use net_traits::request::RequestBuilder;
-use net_traits::{CoreResourceMsg, FetchChannels, FetchResponseMsg};
-use net_traits::{IpcSend, ResourceThreads};
+use net_traits::{CoreResourceMsg, FetchChannels, FetchResponseMsg, IpcSend, ResourceThreads};
use servo_url::ServoUrl;
+use crate::dom::bindings::root::Dom;
+use crate::dom::document::Document;
+use crate::fetch::FetchCanceller;
+
#[derive(Clone, Debug, JSTraceable, MallocSizeOf, PartialEq)]
pub enum LoadType {
Image(#[no_trace] ServoUrl),