mirror of
https://github.com/servo/servo.git
synced 2025-08-03 20:50:07 +01:00
Fix geometry queries for floats and replaced inlines (#34083)
APIs like `clientWidth` were returning zero. Signed-off-by: Oriol Brufau <obrufau@igalia.com>
This commit is contained in:
parent
62c7951424
commit
31566aef02
101 changed files with 5 additions and 2303 deletions
|
@ -16,6 +16,7 @@ use super::{ContainingBlockManager, Fragment, Tag};
|
||||||
use crate::cell::ArcRefCell;
|
use crate::cell::ArcRefCell;
|
||||||
use crate::display_list::StackingContext;
|
use crate::display_list::StackingContext;
|
||||||
use crate::flow::CanvasBackground;
|
use crate::flow::CanvasBackground;
|
||||||
|
use crate::fragment_tree::FragmentFlags;
|
||||||
use crate::geom::PhysicalRect;
|
use crate::geom::PhysicalRect;
|
||||||
|
|
||||||
#[derive(Serialize)]
|
#[derive(Serialize)]
|
||||||
|
@ -134,13 +135,15 @@ impl FragmentTree {
|
||||||
}
|
}
|
||||||
|
|
||||||
let rect = match fragment {
|
let rect = match fragment {
|
||||||
Fragment::Box(fragment) => {
|
Fragment::Box(fragment) | Fragment::Float(fragment) => {
|
||||||
// https://drafts.csswg.org/cssom-view/#dom-element-clienttop
|
// https://drafts.csswg.org/cssom-view/#dom-element-clienttop
|
||||||
// " If the element has no associated CSS layout box or if the
|
// " If the element has no associated CSS layout box or if the
|
||||||
// CSS layout box is inline, return zero." For this check we
|
// CSS layout box is inline, return zero." For this check we
|
||||||
// also explicitly ignore the list item portion of the display
|
// also explicitly ignore the list item portion of the display
|
||||||
// style.
|
// style.
|
||||||
if fragment.style.get_box().display.is_inline_flow() {
|
if fragment.style.get_box().display.is_inline_flow() &&
|
||||||
|
!fragment.base.flags.contains(FragmentFlags::IS_REPLACED)
|
||||||
|
{
|
||||||
return Some(Rect::zero());
|
return Some(Rect::zero());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,48 +0,0 @@
|
||||||
[presentational-hints-rollback.html]
|
|
||||||
[#tests > * 1]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[#tests > * 2]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[#tests > * 3]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[#tests > * 4]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[#tests > * 5]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[#tests > * 6]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[#tests > * 7]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[#tests > * 8]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[#tests > * 9]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[#tests > * 10]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[#tests > * 11]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[#tests > * 12]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[#tests > * 13]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[#tests > * 14]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[#tests > * 15]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[#tests > * 16]
|
|
||||||
expected: FAIL
|
|
|
@ -1,7 +1,4 @@
|
||||||
[marker-intrinsic-contribution-001.html]
|
[marker-intrinsic-contribution-001.html]
|
||||||
[Intrinsic contribution of inside symbol marker]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Intrinsic contribution of inside decimal marker]
|
[Intrinsic contribution of inside decimal marker]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
|
|
|
@ -1,15 +0,0 @@
|
||||||
[video-intrinsic-width-height.html]
|
|
||||||
[no width/height attributes]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[only width attribute]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[only height attribute]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[both width/height attributes]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[both width/height attributes and style]
|
|
||||||
expected: FAIL
|
|
|
@ -19,12 +19,3 @@
|
||||||
|
|
||||||
[display: list-item - available width: 300px]
|
[display: list-item - available width: 300px]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[float: left - available width: 50px]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[float: left - available width: 200px]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[float: left - available width: 300px]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,28 +1,4 @@
|
||||||
[basic.html]
|
[basic.html]
|
||||||
[<img src="/images/green-256x256.png" data-expect="256">]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[<img srcset="/images/green-256x256.png 1x" data-expect="256">]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[<img srcset="/images/green-256x256.png 1.6x" data-expect="160">]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[<img srcset="/images/green-256x256.png 2x" data-expect="128">]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[<img srcset="/images/green-256x256.png 256w" sizes="256px" data-expect="256">]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[<img srcset="/images/green-256x256.png 512w" sizes="256px" data-expect="128">]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[<img srcset="/images/green-256x256.png 256w" sizes="512px" data-expect="512">]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[<img srcset="/images/green-256x256.png 256w" sizes="1px" data-expect="1">]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[<img srcset="data:image/svg+xml,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='-1%20-1%202%202'%20width='20'%20height='20'><circle%20r='1'/></svg> 2x" data-expect="10">]
|
[<img srcset="data:image/svg+xml,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='-1%20-1%202%202'%20width='20'%20height='20'><circle%20r='1'/></svg> 2x" data-expect="10">]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
[not-broken-while-load-task-scheduled.html]
|
|
||||||
[run_test("src")]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[run_test("srcset")]
|
|
||||||
expected: FAIL
|
|
|
@ -1,36 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,6 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,6 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,6 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,36 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,6 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,36 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,6 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,6 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,6 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,36 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,6 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,36 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,6 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,6 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,6 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,36 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,6 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,36 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,6 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,6 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,6 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,36 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,6 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,36 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,6 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,6 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,6 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,36 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,6 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,36 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,6 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,6 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,6 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,36 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,6 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,36 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,36 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[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-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-https origin and keep-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-https origin and swap-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 no-redirect 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 same-https origin and keep-origin 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 same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,36 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[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 cross-http origin and no-redirect 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-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[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-https origin and swap-origin 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-https origin and no-redirect 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 stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,36 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[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 cross-http origin and no-redirect 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-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[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-https origin and swap-origin 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 same-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-https origin and no-redirect 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
|
|
|
@ -1,30 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[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-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-https origin and keep-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-https origin and swap-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 same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,36 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[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 cross-http origin and no-redirect 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-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[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-https origin and swap-origin 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-https origin and no-redirect 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 stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,36 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[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 cross-http origin and no-redirect 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-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[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-https origin and swap-origin 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 same-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-https origin and no-redirect 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
|
|
|
@ -1,36 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -28,9 +28,3 @@
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to cross-https origin and keep-origin redirection from http context.]
|
[Referrer Policy: Expects origin for img-tag to cross-https origin and keep-origin redirection from http context.]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,36 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -28,9 +28,3 @@
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to cross-https origin and keep-origin redirection from http context.]
|
[Referrer Policy: Expects origin for img-tag to cross-https origin and keep-origin redirection from http context.]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,36 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[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-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-https origin and keep-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-https origin and swap-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 no-redirect 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 same-https origin and keep-origin 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 same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,36 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,36 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[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-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-https origin and keep-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-https origin and swap-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 no-redirect 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 same-https origin and keep-origin 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 same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,36 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[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 cross-http origin and no-redirect 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-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[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-https origin and swap-origin 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-https origin and no-redirect 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 stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -28,9 +28,3 @@
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to cross-https origin and keep-origin redirection from http context.]
|
[Referrer Policy: Expects origin for img-tag to cross-https origin and keep-origin redirection from http context.]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,36 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[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 cross-http origin and no-redirect 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-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[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-https origin and swap-origin 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 same-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-https origin and no-redirect 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
|
|
|
@ -1,30 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[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-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-https origin and keep-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-https origin and swap-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 same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,36 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[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 cross-http origin and no-redirect 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-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[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-https origin and swap-origin 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-https origin and no-redirect 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 stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,36 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[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 cross-http origin and no-redirect 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-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[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-https origin and swap-origin 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 same-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-https origin and no-redirect 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
|
|
|
@ -1,36 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -28,9 +28,3 @@
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to cross-https origin and keep-origin redirection from http context.]
|
[Referrer Policy: Expects origin for img-tag to cross-https origin and keep-origin redirection from http context.]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,36 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,36 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[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-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-https origin and keep-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-https origin and swap-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 no-redirect 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 same-https origin and keep-origin 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 same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,36 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[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 cross-http origin and no-redirect 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-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[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-https origin and swap-origin 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-https origin and no-redirect 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 stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,36 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[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 cross-http origin and no-redirect 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-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[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-https origin and swap-origin 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 same-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-https origin and no-redirect 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
|
|
|
@ -1,30 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[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-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-https origin and keep-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-https origin and swap-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 same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,36 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[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 cross-http origin and no-redirect 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-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[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-https origin and swap-origin 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-https origin and no-redirect 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 stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,36 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[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 cross-http origin and no-redirect 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-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[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-https origin and swap-origin 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 same-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-https origin and no-redirect 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
|
|
|
@ -1,36 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,36 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,36 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[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-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-https origin and keep-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-https origin and swap-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 no-redirect 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 same-https origin and keep-origin 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 same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,36 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[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 cross-http origin and no-redirect 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-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[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-https origin and swap-origin 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-https origin and no-redirect 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 stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,36 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[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 cross-http origin and no-redirect 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-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[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-https origin and swap-origin 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 same-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-https origin and no-redirect 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
|
|
|
@ -1,30 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[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-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-https origin and keep-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-https origin and swap-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 same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,36 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[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 cross-http origin and no-redirect 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-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[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-https origin and swap-origin 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-https origin and no-redirect 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 stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,36 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[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 cross-http origin and no-redirect 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-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[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-https origin and swap-origin 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 same-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-https origin and no-redirect 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
|
|
|
@ -1,36 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -28,9 +28,3 @@
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to cross-https origin and keep-origin redirection from http context.]
|
[Referrer Policy: Expects origin for img-tag to cross-https origin and keep-origin redirection from http context.]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,36 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -28,9 +28,3 @@
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to cross-https origin and keep-origin redirection from http context.]
|
[Referrer Policy: Expects origin for img-tag to cross-https origin and keep-origin redirection from http context.]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,36 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[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-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-https origin and keep-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-https origin and swap-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 no-redirect 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 same-https origin and keep-origin 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 same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,36 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,36 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[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-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-https origin and keep-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-https origin and swap-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 no-redirect 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 same-https origin and keep-origin 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 same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,36 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[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 cross-http origin and no-redirect 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-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[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-https origin and swap-origin 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-https origin and no-redirect 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 stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -28,9 +28,3 @@
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to cross-https origin and keep-origin redirection from http context.]
|
[Referrer Policy: Expects origin for img-tag to cross-https origin and keep-origin redirection from http context.]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,36 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[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 cross-http origin and no-redirect 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-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[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-https origin and swap-origin 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 same-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-https origin and no-redirect 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
|
|
|
@ -1,30 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[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-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-https origin and keep-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-https origin and swap-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 same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,36 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[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 cross-http origin and no-redirect 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-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[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-https origin and swap-origin 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-https origin and no-redirect 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 stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,36 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[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 cross-http origin and no-redirect 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-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[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-https origin and swap-origin 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 same-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-https origin and no-redirect 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
|
|
|
@ -1,36 +0,0 @@
|
||||||
[img-tag.http.html]
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to cross-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-https origin and swap-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
|
@ -28,9 +28,3 @@
|
||||||
|
|
||||||
[Referrer Policy: Expects origin for img-tag to cross-https origin and keep-origin redirection from http context.]
|
[Referrer Policy: Expects origin for img-tag to cross-https origin and keep-origin redirection from http context.]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and keep-origin redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Referrer Policy: Expects stripped-referrer for img-tag to same-http origin and no-redirect redirection from http context.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,3 +0,0 @@
|
||||||
[link-rel-prefetch.html]
|
|
||||||
[Prefetched image.]
|
|
||||||
expected: FAIL
|
|
|
@ -1,3 +0,0 @@
|
||||||
[multiple-headers-and-values.html]
|
|
||||||
[Image uses the last recognized Referrer-Policy header value]
|
|
||||||
expected: FAIL
|
|
|
@ -1,3 +0,0 @@
|
||||||
[multiple-headers-combined.html]
|
|
||||||
[Image uses the last recognized Referrer-Policy header value]
|
|
||||||
expected: FAIL
|
|
|
@ -1,3 +0,0 @@
|
||||||
[multiple-headers-one-unknown-token.html]
|
|
||||||
[Image uses last recognized referrer policy token from Referrer-Policy headers]
|
|
||||||
expected: FAIL
|
|
|
@ -1,3 +0,0 @@
|
||||||
[multiple-headers.html]
|
|
||||||
[Image uses the last recognized Referrer-Policy header]
|
|
||||||
expected: FAIL
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue