mirror of
https://github.com/servo/servo.git
synced 2025-06-08 16:43:28 +00:00
Propagate referrer policy during about:srcdoc page load
This commit is contained in:
parent
310821d3b0
commit
dd57641987
52 changed files with 38 additions and 1595 deletions
|
@ -162,6 +162,25 @@ impl From<ReferrerPolicyHeader> for ReferrerPolicy {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl From<ReferrerPolicy> for ReferrerPolicyHeader {
|
||||||
|
fn from(referrer_policy: ReferrerPolicy) -> Self {
|
||||||
|
match referrer_policy {
|
||||||
|
ReferrerPolicy::NoReferrer => ReferrerPolicyHeader::NO_REFERRER,
|
||||||
|
ReferrerPolicy::NoReferrerWhenDowngrade => {
|
||||||
|
ReferrerPolicyHeader::NO_REFERRER_WHEN_DOWNGRADE
|
||||||
|
},
|
||||||
|
ReferrerPolicy::SameOrigin => ReferrerPolicyHeader::SAME_ORIGIN,
|
||||||
|
ReferrerPolicy::Origin => ReferrerPolicyHeader::ORIGIN,
|
||||||
|
ReferrerPolicy::OriginWhenCrossOrigin => ReferrerPolicyHeader::ORIGIN_WHEN_CROSS_ORIGIN,
|
||||||
|
ReferrerPolicy::UnsafeUrl => ReferrerPolicyHeader::UNSAFE_URL,
|
||||||
|
ReferrerPolicy::StrictOrigin => ReferrerPolicyHeader::STRICT_ORIGIN,
|
||||||
|
ReferrerPolicy::StrictOriginWhenCrossOrigin => {
|
||||||
|
ReferrerPolicyHeader::STRICT_ORIGIN_WHEN_CROSS_ORIGIN
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#[derive(Debug, Deserialize, Serialize)]
|
#[derive(Debug, Deserialize, Serialize)]
|
||||||
pub enum FetchResponseMsg {
|
pub enum FetchResponseMsg {
|
||||||
// todo: should have fields for transmitted/total bytes
|
// todo: should have fields for transmitted/total bytes
|
||||||
|
@ -695,6 +714,21 @@ impl Metadata {
|
||||||
self.content_type = Some(Serde(ContentType::from(mime.clone())));
|
self.content_type = Some(Serde(ContentType::from(mime.clone())));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Set the referrer policy associated with the loaded resource.
|
||||||
|
pub fn set_referrer_policy(&mut self, referrer_policy: Option<ReferrerPolicy>) {
|
||||||
|
if self.headers.is_none() {
|
||||||
|
self.headers = Some(Serde(HeaderMap::new()));
|
||||||
|
}
|
||||||
|
|
||||||
|
self.referrer_policy = referrer_policy;
|
||||||
|
if let Some(referrer_policy) = referrer_policy {
|
||||||
|
self.headers
|
||||||
|
.as_mut()
|
||||||
|
.unwrap()
|
||||||
|
.typed_insert::<ReferrerPolicyHeader>(referrer_policy.into());
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// The creator of a given cookie
|
/// The creator of a given cookie
|
||||||
|
|
|
@ -2502,7 +2502,7 @@ impl ScriptThread {
|
||||||
if load_data.url.as_str() == "about:blank" {
|
if load_data.url.as_str() == "about:blank" {
|
||||||
self.start_page_load_about_blank(new_load, load_data.js_eval_result);
|
self.start_page_load_about_blank(new_load, load_data.js_eval_result);
|
||||||
} else if load_data.url.as_str() == "about:srcdoc" {
|
} else if load_data.url.as_str() == "about:srcdoc" {
|
||||||
self.page_load_about_srcdoc(new_load, load_data.srcdoc);
|
self.page_load_about_srcdoc(new_load, load_data);
|
||||||
} else {
|
} else {
|
||||||
self.pre_page_load(new_load, load_data);
|
self.pre_page_load(new_load, load_data);
|
||||||
}
|
}
|
||||||
|
@ -3865,7 +3865,7 @@ impl ScriptThread {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Synchronously parse a srcdoc document from a giving HTML string.
|
/// Synchronously parse a srcdoc document from a giving HTML string.
|
||||||
fn page_load_about_srcdoc(&self, incomplete: InProgressLoad, src_doc: String) {
|
fn page_load_about_srcdoc(&self, incomplete: InProgressLoad, load_data: LoadData) {
|
||||||
let id = incomplete.pipeline_id;
|
let id = incomplete.pipeline_id;
|
||||||
|
|
||||||
self.incomplete_loads.borrow_mut().push(incomplete);
|
self.incomplete_loads.borrow_mut().push(incomplete);
|
||||||
|
@ -3875,8 +3875,9 @@ impl ScriptThread {
|
||||||
|
|
||||||
let mut meta = Metadata::default(url);
|
let mut meta = Metadata::default(url);
|
||||||
meta.set_content_type(Some(&mime::TEXT_HTML));
|
meta.set_content_type(Some(&mime::TEXT_HTML));
|
||||||
|
meta.set_referrer_policy(load_data.referrer_policy);
|
||||||
|
|
||||||
let chunk = src_doc.into_bytes();
|
let chunk = load_data.srcdoc.into_bytes();
|
||||||
|
|
||||||
context.process_response(Ok(FetchMetadata::Unfiltered(meta)));
|
context.process_response(Ok(FetchMetadata::Unfiltered(meta)));
|
||||||
context.process_response_chunk(chunk);
|
context.process_response_chunk(chunk);
|
||||||
|
|
|
@ -1,37 +0,0 @@
|
||||||
[iframe-tag.http.html]
|
|
||||||
[Referrer Policy: Expects omitted for iframe-tag to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for iframe-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for iframe-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for iframe-tag to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for iframe-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for iframe-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for iframe-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for iframe-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for iframe-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for iframe-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for iframe-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for iframe-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,37 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects omitted for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for img-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for img-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for img-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for img-tag to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for img-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for img-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for img-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for img-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for img-tag to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for img-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,37 +0,0 @@
|
||||||
[script-tag.http.html]
|
|
||||||
[Referrer Policy: Expects omitted for script-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for script-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for script-tag to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for script-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for script-tag to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for script-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for script-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for script-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for script-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for script-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for script-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for script-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,37 +0,0 @@
|
||||||
[xhr.http.html]
|
|
||||||
[Referrer Policy: Expects omitted for xhr to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for xhr to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for xhr to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for xhr to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for xhr to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for xhr to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for xhr to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for xhr to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for xhr to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for xhr to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for xhr to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for xhr to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,31 +0,0 @@
|
||||||
[iframe-tag.http.html]
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,31 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects origin for img-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,31 +0,0 @@
|
||||||
[script-tag.http.html]
|
|
||||||
[Referrer Policy: Expects origin for script-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,31 +0,0 @@
|
||||||
[xhr.http.html]
|
|
||||||
[Referrer Policy: Expects origin for xhr to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,37 +0,0 @@
|
||||||
[iframe-tag.http.html]
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,37 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects origin for img-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,37 +0,0 @@
|
||||||
[script-tag.http.html]
|
|
||||||
[Referrer Policy: Expects origin for script-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,37 +0,0 @@
|
||||||
[xhr.http.html]
|
|
||||||
[Referrer Policy: Expects origin for xhr to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,25 +0,0 @@
|
||||||
[iframe-tag.http.html]
|
|
||||||
[Referrer Policy: Expects omitted for iframe-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for iframe-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for iframe-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for iframe-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for iframe-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for iframe-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for iframe-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for iframe-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,25 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects omitted for img-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for img-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for img-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for img-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for img-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for img-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for img-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for img-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,25 +0,0 @@
|
||||||
[script-tag.http.html]
|
|
||||||
[Referrer Policy: Expects omitted for script-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for script-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for script-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for script-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for script-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for script-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for script-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for script-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,25 +0,0 @@
|
||||||
[xhr.http.html]
|
|
||||||
[Referrer Policy: Expects omitted for xhr to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for xhr to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for xhr to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for xhr to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for xhr to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for xhr to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for xhr to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for xhr to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,31 +0,0 @@
|
||||||
[iframe-tag.http.html]
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,31 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects origin for img-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,31 +0,0 @@
|
||||||
[script-tag.http.html]
|
|
||||||
[Referrer Policy: Expects origin for script-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,31 +0,0 @@
|
||||||
[xhr.http.html]
|
|
||||||
[Referrer Policy: Expects origin for xhr to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,37 +0,0 @@
|
||||||
[iframe-tag.http.html]
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,37 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects origin for img-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,37 +0,0 @@
|
||||||
[script-tag.http.html]
|
|
||||||
[Referrer Policy: Expects origin for script-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,37 +0,0 @@
|
||||||
[xhr.http.html]
|
|
||||||
[Referrer Policy: Expects origin for xhr to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,37 +0,0 @@
|
||||||
[iframe-tag.http.html]
|
|
||||||
[Referrer Policy: Expects omitted for iframe-tag to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for iframe-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for iframe-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for iframe-tag to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for iframe-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for iframe-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for iframe-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for iframe-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for iframe-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for iframe-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for iframe-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for iframe-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,37 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects omitted for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for img-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for img-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for img-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for img-tag to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for img-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for img-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for img-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for img-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for img-tag to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for img-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,37 +0,0 @@
|
||||||
[script-tag.http.html]
|
|
||||||
[Referrer Policy: Expects omitted for script-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for script-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for script-tag to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for script-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for script-tag to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for script-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for script-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for script-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for script-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for script-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for script-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for script-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,37 +0,0 @@
|
||||||
[xhr.http.html]
|
|
||||||
[Referrer Policy: Expects omitted for xhr to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for xhr to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for xhr to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for xhr to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for xhr to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for xhr to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for xhr to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for xhr to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for xhr to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for xhr to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for xhr to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for xhr to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,31 +0,0 @@
|
||||||
[iframe-tag.http.html]
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,31 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects origin for img-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,31 +0,0 @@
|
||||||
[script-tag.http.html]
|
|
||||||
[Referrer Policy: Expects origin for script-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,31 +0,0 @@
|
||||||
[xhr.http.html]
|
|
||||||
[Referrer Policy: Expects origin for xhr to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,37 +0,0 @@
|
||||||
[iframe-tag.http.html]
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,37 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects origin for img-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,37 +0,0 @@
|
||||||
[script-tag.http.html]
|
|
||||||
[Referrer Policy: Expects origin for script-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,37 +0,0 @@
|
||||||
[xhr.http.html]
|
|
||||||
[Referrer Policy: Expects origin for xhr to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,25 +0,0 @@
|
||||||
[iframe-tag.http.html]
|
|
||||||
[Referrer Policy: Expects omitted for iframe-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for iframe-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for iframe-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for iframe-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for iframe-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for iframe-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for iframe-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for iframe-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,25 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects omitted for img-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for img-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for img-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for img-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for img-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for img-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for img-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for img-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,25 +0,0 @@
|
||||||
[script-tag.http.html]
|
|
||||||
[Referrer Policy: Expects omitted for script-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for script-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for script-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for script-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for script-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for script-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for script-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for script-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,25 +0,0 @@
|
||||||
[xhr.http.html]
|
|
||||||
[Referrer Policy: Expects omitted for xhr to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for xhr to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for xhr to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for xhr to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for xhr to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for xhr to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for xhr to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects omitted for xhr to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,31 +0,0 @@
|
||||||
[iframe-tag.http.html]
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,31 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects origin for img-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,31 +0,0 @@
|
||||||
[script-tag.http.html]
|
|
||||||
[Referrer Policy: Expects origin for script-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,31 +0,0 @@
|
||||||
[xhr.http.html]
|
|
||||||
[Referrer Policy: Expects origin for xhr to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,37 +0,0 @@
|
||||||
[iframe-tag.http.html]
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for iframe-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,37 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects origin for img-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,37 +0,0 @@
|
||||||
[script-tag.http.html]
|
|
||||||
[Referrer Policy: Expects origin for script-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for script-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,37 +0,0 @@
|
||||||
[xhr.http.html]
|
|
||||||
[Referrer Policy: Expects origin for xhr to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for xhr to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,4 +0,0 @@
|
||||||
[iframe-inheritance-srcdoc-child.html]
|
|
||||||
[iframes srcdoc child correctly inherit the ancestor's referrer policy]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,4 +0,0 @@
|
||||||
[iframe-inheritance-srcdoc.html]
|
|
||||||
[iframes srcdoc correctly inherit the ancestor's referrer policy]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue