diff options
author | Keith Yeung <kungfukeith11@gmail.com> | 2016-07-03 21:24:53 +0800 |
---|---|---|
committer | Keith Yeung <kungfukeith11@gmail.com> | 2016-09-21 11:50:55 -0700 |
commit | 4dcf693a751b0780a72a3e3058e12642a8082cfe (patch) | |
tree | 1a24b992521eb6eaf32d2a54bcd7ebe4585ed9c3 /components/script/document_loader.rs | |
parent | d4816762fa9db76d56014caa50243f40f481265b (diff) | |
download | servo-4dcf693a751b0780a72a3e3058e12642a8082cfe.tar.gz servo-4dcf693a751b0780a72a3e3058e12642a8082cfe.zip |
Use fetch infrastructure to load external scripts
Diffstat (limited to 'components/script/document_loader.rs')
-rw-r--r-- | components/script/document_loader.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/document_loader.rs b/components/script/document_loader.rs index c38a234b2c1..5209b68b9ac 100644 --- a/components/script/document_loader.rs +++ b/components/script/document_loader.rs @@ -9,9 +9,9 @@ use dom::bindings::js::JS; use dom::document::Document; use ipc_channel::ipc::IpcSender; use msg::constellation_msg::{PipelineId, ReferrerPolicy}; -use net_traits::request::RequestInit; use net_traits::{AsyncResponseTarget, PendingAsyncLoad, LoadContext}; use net_traits::{FetchResponseMsg, ResourceThreads, IpcSend}; +use net_traits::request::RequestInit; use std::thread; use url::Url; |