diff options
author | ddh <dianehosfelt@gmail.com> | 2016-07-14 20:29:32 +0100 |
---|---|---|
committer | ddh <dianehosfelt@gmail.com> | 2016-07-29 11:20:38 +0100 |
commit | db808ca75d8645036b4e40d639e2b74b84caf4d2 (patch) | |
tree | 9b8dc122a30f1bf734b168107ff4c1b3b4d32350 /components/script/dom/xmlhttprequest.rs | |
parent | 45209b7ffea7b2355e227719ed29cb6aa6f00e0f (diff) | |
download | servo-db808ca75d8645036b4e40d639e2b74b84caf4d2.tar.gz servo-db808ca75d8645036b4e40d639e2b74b84caf4d2.zip |
Added devtools support to fetch for XHR + Manish's XHR ident fix
added unit test for request fetch with devtools
added devtools/fetch test
Diffstat (limited to 'components/script/dom/xmlhttprequest.rs')
-rw-r--r-- | components/script/dom/xmlhttprequest.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/script/dom/xmlhttprequest.rs b/components/script/dom/xmlhttprequest.rs index 5cef702c01a..b35ffef73c5 100644 --- a/components/script/dom/xmlhttprequest.rs +++ b/components/script/dom/xmlhttprequest.rs @@ -594,6 +594,7 @@ impl XMLHttpRequestMethods for XMLHttpRequest { origin: self.global().r().get_url(), referer_url: self.referrer_url.clone(), referrer_policy: self.referrer_policy.clone(), + pipeline_id: self.pipeline_id(), }; if bypass_cross_origin_check { |