diff options
author | Oriol Brufau <obrufau@igalia.com> | 2024-10-31 15:44:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-31 14:44:15 +0000 |
commit | 31566aef02af25625ec2f28d3b108f8e0234b974 (patch) | |
tree | 6795a3021276faf431b9e85dec97394975b2ef09 | |
parent | 62c79514249ac2c493390e75cd66235bd31942f2 (diff) | |
download | servo-31566aef02af25625ec2f28d3b108f8e0234b974.tar.gz servo-31566aef02af25625ec2f28d3b108f8e0234b974.zip |
Fix geometry queries for floats and replaced inlines (#34083)
APIs like `clientWidth` were returning zero.
Signed-off-by: Oriol Brufau <obrufau@igalia.com>
101 files changed, 5 insertions, 2303 deletions
diff --git a/components/layout_2020/fragment_tree/fragment_tree.rs b/components/layout_2020/fragment_tree/fragment_tree.rs index 5394f08cc33..060e8b4a100 100644 --- a/components/layout_2020/fragment_tree/fragment_tree.rs +++ b/components/layout_2020/fragment_tree/fragment_tree.rs @@ -16,6 +16,7 @@ use super::{ContainingBlockManager, Fragment, Tag}; use crate::cell::ArcRefCell; use crate::display_list::StackingContext; use crate::flow::CanvasBackground; +use crate::fragment_tree::FragmentFlags; use crate::geom::PhysicalRect; #[derive(Serialize)] @@ -134,13 +135,15 @@ impl FragmentTree { } let rect = match fragment { - Fragment::Box(fragment) => { + Fragment::Box(fragment) | Fragment::Float(fragment) => { // https://drafts.csswg.org/cssom-view/#dom-element-clienttop // " If the element has no associated CSS layout box or if the // CSS layout box is inline, return zero." For this check we // also explicitly ignore the list item portion of the display // 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()); } diff --git a/tests/wpt/meta/css/css-cascade/presentational-hints-rollback.html.ini b/tests/wpt/meta/css/css-cascade/presentational-hints-rollback.html.ini deleted file mode 100644 index cd5b6f21bc0..00000000000 --- a/tests/wpt/meta/css/css-cascade/presentational-hints-rollback.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/css/css-pseudo/marker-intrinsic-contribution-001.html.ini b/tests/wpt/meta/css/css-pseudo/marker-intrinsic-contribution-001.html.ini index 55bdc4fd20f..44f306d567d 100644 --- a/tests/wpt/meta/css/css-pseudo/marker-intrinsic-contribution-001.html.ini +++ b/tests/wpt/meta/css/css-pseudo/marker-intrinsic-contribution-001.html.ini @@ -1,7 +1,4 @@ [marker-intrinsic-contribution-001.html] - [Intrinsic contribution of inside symbol marker] - expected: FAIL - [Intrinsic contribution of inside decimal marker] expected: FAIL diff --git a/tests/wpt/meta/html/rendering/replaced-elements/attributes-for-embedded-content-and-images/video-intrinsic-width-height.html.ini b/tests/wpt/meta/html/rendering/replaced-elements/attributes-for-embedded-content-and-images/video-intrinsic-width-height.html.ini deleted file mode 100644 index 94be05be34a..00000000000 --- a/tests/wpt/meta/html/rendering/replaced-elements/attributes-for-embedded-content-and-images/video-intrinsic-width-height.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/html/rendering/widgets/button-layout/shrink-wrap.html.ini b/tests/wpt/meta/html/rendering/widgets/button-layout/shrink-wrap.html.ini index 86933d3b219..ac96bb6d55c 100644 --- a/tests/wpt/meta/html/rendering/widgets/button-layout/shrink-wrap.html.ini +++ b/tests/wpt/meta/html/rendering/widgets/button-layout/shrink-wrap.html.ini @@ -19,12 +19,3 @@ [display: list-item - available width: 300px] expected: FAIL - - [float: left - available width: 50px] - expected: FAIL - - [float: left - available width: 200px] - expected: FAIL - - [float: left - available width: 300px] - expected: FAIL diff --git a/tests/wpt/meta/html/semantics/embedded-content/the-img-element/current-pixel-density/basic.html.ini b/tests/wpt/meta/html/semantics/embedded-content/the-img-element/current-pixel-density/basic.html.ini index 2928dbbf367..ce573cfa184 100644 --- a/tests/wpt/meta/html/semantics/embedded-content/the-img-element/current-pixel-density/basic.html.ini +++ b/tests/wpt/meta/html/semantics/embedded-content/the-img-element/current-pixel-density/basic.html.ini @@ -1,28 +1,4 @@ [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">] expected: FAIL diff --git a/tests/wpt/meta/html/semantics/embedded-content/the-img-element/update-the-image-data/not-broken-while-load-task-scheduled.html.ini b/tests/wpt/meta/html/semantics/embedded-content/the-img-element/update-the-image-data/not-broken-while-load-task-scheduled.html.ini deleted file mode 100644 index f245426830c..00000000000 --- a/tests/wpt/meta/html/semantics/embedded-content/the-img-element/update-the-image-data/not-broken-while-load-task-scheduled.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[not-broken-while-load-task-scheduled.html] - [run_test("src")] - expected: FAIL - - [run_test("srcset")] - expected: FAIL diff --git a/tests/wpt/meta/referrer-policy/4K+1/gen/top.http-rp/no-referrer-when-downgrade/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/4K+1/gen/top.http-rp/no-referrer-when-downgrade/img-tag.http.html.ini deleted file mode 100644 index ee412d1be75..00000000000 --- a/tests/wpt/meta/referrer-policy/4K+1/gen/top.http-rp/no-referrer-when-downgrade/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/4K+1/gen/top.http-rp/origin-when-cross-origin/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/4K+1/gen/top.http-rp/origin-when-cross-origin/img-tag.http.html.ini deleted file mode 100644 index dc24fb16d94..00000000000 --- a/tests/wpt/meta/referrer-policy/4K+1/gen/top.http-rp/origin-when-cross-origin/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/4K+1/gen/top.http-rp/same-origin/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/4K+1/gen/top.http-rp/same-origin/img-tag.http.html.ini deleted file mode 100644 index dc24fb16d94..00000000000 --- a/tests/wpt/meta/referrer-policy/4K+1/gen/top.http-rp/same-origin/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/4K+1/gen/top.http-rp/strict-origin-when-cross-origin/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/4K+1/gen/top.http-rp/strict-origin-when-cross-origin/img-tag.http.html.ini deleted file mode 100644 index dc24fb16d94..00000000000 --- a/tests/wpt/meta/referrer-policy/4K+1/gen/top.http-rp/strict-origin-when-cross-origin/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/4K+1/gen/top.http-rp/unsafe-url/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/4K+1/gen/top.http-rp/unsafe-url/img-tag.http.html.ini deleted file mode 100644 index ee412d1be75..00000000000 --- a/tests/wpt/meta/referrer-policy/4K+1/gen/top.http-rp/unsafe-url/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/4K+1/gen/top.http-rp/unset/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/4K+1/gen/top.http-rp/unset/img-tag.http.html.ini deleted file mode 100644 index dc24fb16d94..00000000000 --- a/tests/wpt/meta/referrer-policy/4K+1/gen/top.http-rp/unset/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/4K+1/gen/top.meta/no-referrer-when-downgrade/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/4K+1/gen/top.meta/no-referrer-when-downgrade/img-tag.http.html.ini deleted file mode 100644 index ee412d1be75..00000000000 --- a/tests/wpt/meta/referrer-policy/4K+1/gen/top.meta/no-referrer-when-downgrade/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/4K+1/gen/top.meta/origin-when-cross-origin/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/4K+1/gen/top.meta/origin-when-cross-origin/img-tag.http.html.ini deleted file mode 100644 index dc24fb16d94..00000000000 --- a/tests/wpt/meta/referrer-policy/4K+1/gen/top.meta/origin-when-cross-origin/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/4K+1/gen/top.meta/same-origin/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/4K+1/gen/top.meta/same-origin/img-tag.http.html.ini deleted file mode 100644 index dc24fb16d94..00000000000 --- a/tests/wpt/meta/referrer-policy/4K+1/gen/top.meta/same-origin/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/4K+1/gen/top.meta/strict-origin-when-cross-origin/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/4K+1/gen/top.meta/strict-origin-when-cross-origin/img-tag.http.html.ini deleted file mode 100644 index dc24fb16d94..00000000000 --- a/tests/wpt/meta/referrer-policy/4K+1/gen/top.meta/strict-origin-when-cross-origin/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/4K+1/gen/top.meta/unsafe-url/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/4K+1/gen/top.meta/unsafe-url/img-tag.http.html.ini deleted file mode 100644 index ee412d1be75..00000000000 --- a/tests/wpt/meta/referrer-policy/4K+1/gen/top.meta/unsafe-url/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/4K+1/gen/top.meta/unset/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/4K+1/gen/top.meta/unset/img-tag.http.html.ini deleted file mode 100644 index dc24fb16d94..00000000000 --- a/tests/wpt/meta/referrer-policy/4K+1/gen/top.meta/unset/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/4K-1/gen/top.http-rp/no-referrer-when-downgrade/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/4K-1/gen/top.http-rp/no-referrer-when-downgrade/img-tag.http.html.ini deleted file mode 100644 index ee412d1be75..00000000000 --- a/tests/wpt/meta/referrer-policy/4K-1/gen/top.http-rp/no-referrer-when-downgrade/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/4K-1/gen/top.http-rp/origin-when-cross-origin/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/4K-1/gen/top.http-rp/origin-when-cross-origin/img-tag.http.html.ini deleted file mode 100644 index dc24fb16d94..00000000000 --- a/tests/wpt/meta/referrer-policy/4K-1/gen/top.http-rp/origin-when-cross-origin/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/4K-1/gen/top.http-rp/same-origin/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/4K-1/gen/top.http-rp/same-origin/img-tag.http.html.ini deleted file mode 100644 index dc24fb16d94..00000000000 --- a/tests/wpt/meta/referrer-policy/4K-1/gen/top.http-rp/same-origin/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/4K-1/gen/top.http-rp/strict-origin-when-cross-origin/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/4K-1/gen/top.http-rp/strict-origin-when-cross-origin/img-tag.http.html.ini deleted file mode 100644 index dc24fb16d94..00000000000 --- a/tests/wpt/meta/referrer-policy/4K-1/gen/top.http-rp/strict-origin-when-cross-origin/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/4K-1/gen/top.http-rp/unsafe-url/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/4K-1/gen/top.http-rp/unsafe-url/img-tag.http.html.ini deleted file mode 100644 index ee412d1be75..00000000000 --- a/tests/wpt/meta/referrer-policy/4K-1/gen/top.http-rp/unsafe-url/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/4K-1/gen/top.http-rp/unset/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/4K-1/gen/top.http-rp/unset/img-tag.http.html.ini deleted file mode 100644 index dc24fb16d94..00000000000 --- a/tests/wpt/meta/referrer-policy/4K-1/gen/top.http-rp/unset/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/4K-1/gen/top.meta/no-referrer-when-downgrade/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/4K-1/gen/top.meta/no-referrer-when-downgrade/img-tag.http.html.ini deleted file mode 100644 index ee412d1be75..00000000000 --- a/tests/wpt/meta/referrer-policy/4K-1/gen/top.meta/no-referrer-when-downgrade/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/4K-1/gen/top.meta/origin-when-cross-origin/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/4K-1/gen/top.meta/origin-when-cross-origin/img-tag.http.html.ini deleted file mode 100644 index dc24fb16d94..00000000000 --- a/tests/wpt/meta/referrer-policy/4K-1/gen/top.meta/origin-when-cross-origin/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/4K-1/gen/top.meta/same-origin/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/4K-1/gen/top.meta/same-origin/img-tag.http.html.ini deleted file mode 100644 index dc24fb16d94..00000000000 --- a/tests/wpt/meta/referrer-policy/4K-1/gen/top.meta/same-origin/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/4K-1/gen/top.meta/strict-origin-when-cross-origin/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/4K-1/gen/top.meta/strict-origin-when-cross-origin/img-tag.http.html.ini deleted file mode 100644 index dc24fb16d94..00000000000 --- a/tests/wpt/meta/referrer-policy/4K-1/gen/top.meta/strict-origin-when-cross-origin/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/4K-1/gen/top.meta/unsafe-url/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/4K-1/gen/top.meta/unsafe-url/img-tag.http.html.ini deleted file mode 100644 index ee412d1be75..00000000000 --- a/tests/wpt/meta/referrer-policy/4K-1/gen/top.meta/unsafe-url/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/4K-1/gen/top.meta/unset/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/4K-1/gen/top.meta/unset/img-tag.http.html.ini deleted file mode 100644 index dc24fb16d94..00000000000 --- a/tests/wpt/meta/referrer-policy/4K-1/gen/top.meta/unset/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/4K/gen/top.http-rp/no-referrer-when-downgrade/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/4K/gen/top.http-rp/no-referrer-when-downgrade/img-tag.http.html.ini deleted file mode 100644 index ee412d1be75..00000000000 --- a/tests/wpt/meta/referrer-policy/4K/gen/top.http-rp/no-referrer-when-downgrade/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/4K/gen/top.http-rp/origin-when-cross-origin/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/4K/gen/top.http-rp/origin-when-cross-origin/img-tag.http.html.ini deleted file mode 100644 index dc24fb16d94..00000000000 --- a/tests/wpt/meta/referrer-policy/4K/gen/top.http-rp/origin-when-cross-origin/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/4K/gen/top.http-rp/same-origin/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/4K/gen/top.http-rp/same-origin/img-tag.http.html.ini deleted file mode 100644 index dc24fb16d94..00000000000 --- a/tests/wpt/meta/referrer-policy/4K/gen/top.http-rp/same-origin/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/4K/gen/top.http-rp/strict-origin-when-cross-origin/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/4K/gen/top.http-rp/strict-origin-when-cross-origin/img-tag.http.html.ini deleted file mode 100644 index dc24fb16d94..00000000000 --- a/tests/wpt/meta/referrer-policy/4K/gen/top.http-rp/strict-origin-when-cross-origin/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/4K/gen/top.http-rp/unsafe-url/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/4K/gen/top.http-rp/unsafe-url/img-tag.http.html.ini deleted file mode 100644 index ee412d1be75..00000000000 --- a/tests/wpt/meta/referrer-policy/4K/gen/top.http-rp/unsafe-url/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/4K/gen/top.http-rp/unset/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/4K/gen/top.http-rp/unset/img-tag.http.html.ini deleted file mode 100644 index dc24fb16d94..00000000000 --- a/tests/wpt/meta/referrer-policy/4K/gen/top.http-rp/unset/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/4K/gen/top.meta/no-referrer-when-downgrade/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/4K/gen/top.meta/no-referrer-when-downgrade/img-tag.http.html.ini deleted file mode 100644 index ee412d1be75..00000000000 --- a/tests/wpt/meta/referrer-policy/4K/gen/top.meta/no-referrer-when-downgrade/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/4K/gen/top.meta/origin-when-cross-origin/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/4K/gen/top.meta/origin-when-cross-origin/img-tag.http.html.ini deleted file mode 100644 index dc24fb16d94..00000000000 --- a/tests/wpt/meta/referrer-policy/4K/gen/top.meta/origin-when-cross-origin/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/4K/gen/top.meta/same-origin/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/4K/gen/top.meta/same-origin/img-tag.http.html.ini deleted file mode 100644 index dc24fb16d94..00000000000 --- a/tests/wpt/meta/referrer-policy/4K/gen/top.meta/same-origin/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/4K/gen/top.meta/strict-origin-when-cross-origin/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/4K/gen/top.meta/strict-origin-when-cross-origin/img-tag.http.html.ini deleted file mode 100644 index dc24fb16d94..00000000000 --- a/tests/wpt/meta/referrer-policy/4K/gen/top.meta/strict-origin-when-cross-origin/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/4K/gen/top.meta/unsafe-url/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/4K/gen/top.meta/unsafe-url/img-tag.http.html.ini deleted file mode 100644 index ee412d1be75..00000000000 --- a/tests/wpt/meta/referrer-policy/4K/gen/top.meta/unsafe-url/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/4K/gen/top.meta/unset/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/4K/gen/top.meta/unset/img-tag.http.html.ini deleted file mode 100644 index dc24fb16d94..00000000000 --- a/tests/wpt/meta/referrer-policy/4K/gen/top.meta/unset/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/gen/iframe.http-rp/no-referrer-when-downgrade/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/iframe.http-rp/no-referrer-when-downgrade/img-tag.http.html.ini deleted file mode 100644 index ee412d1be75..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/iframe.http-rp/no-referrer-when-downgrade/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/gen/iframe.http-rp/no-referrer/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/iframe.http-rp/no-referrer/img-tag.http.html.ini deleted file mode 100644 index 5a9703788a1..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/iframe.http-rp/no-referrer/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/gen/iframe.http-rp/origin-when-cross-origin/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/iframe.http-rp/origin-when-cross-origin/img-tag.http.html.ini deleted file mode 100644 index e62bf5b224c..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/iframe.http-rp/origin-when-cross-origin/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/gen/iframe.http-rp/origin/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/iframe.http-rp/origin/img-tag.http.html.ini deleted file mode 100644 index a32c9a18510..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/iframe.http-rp/origin/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/gen/iframe.http-rp/same-origin/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/iframe.http-rp/same-origin/img-tag.http.html.ini deleted file mode 100644 index 20091400d9f..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/iframe.http-rp/same-origin/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/gen/iframe.http-rp/strict-origin-when-cross-origin/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/iframe.http-rp/strict-origin-when-cross-origin/img-tag.http.html.ini deleted file mode 100644 index e62bf5b224c..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/iframe.http-rp/strict-origin-when-cross-origin/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/gen/iframe.http-rp/strict-origin/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/iframe.http-rp/strict-origin/img-tag.http.html.ini deleted file mode 100644 index a32c9a18510..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/iframe.http-rp/strict-origin/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/gen/iframe.http-rp/unsafe-url/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/iframe.http-rp/unsafe-url/img-tag.http.html.ini deleted file mode 100644 index ee412d1be75..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/iframe.http-rp/unsafe-url/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/gen/iframe.http-rp/unset/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/iframe.http-rp/unset/img-tag.http.html.ini index 85a95ab3825..7646779a328 100644 --- a/tests/wpt/meta/referrer-policy/gen/iframe.http-rp/unset/img-tag.http.html.ini +++ b/tests/wpt/meta/referrer-policy/gen/iframe.http-rp/unset/img-tag.http.html.ini @@ -28,9 +28,3 @@ [Referrer Policy: Expects origin 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 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 diff --git a/tests/wpt/meta/referrer-policy/gen/iframe.meta/always/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/iframe.meta/always/img-tag.http.html.ini deleted file mode 100644 index ee412d1be75..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/iframe.meta/always/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/gen/iframe.meta/default/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/iframe.meta/default/img-tag.http.html.ini index 85a95ab3825..7646779a328 100644 --- a/tests/wpt/meta/referrer-policy/gen/iframe.meta/default/img-tag.http.html.ini +++ b/tests/wpt/meta/referrer-policy/gen/iframe.meta/default/img-tag.http.html.ini @@ -28,9 +28,3 @@ [Referrer Policy: Expects origin 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 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 diff --git a/tests/wpt/meta/referrer-policy/gen/iframe.meta/never/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/iframe.meta/never/img-tag.http.html.ini deleted file mode 100644 index 5a9703788a1..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/iframe.meta/never/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/gen/iframe.meta/no-referrer-when-downgrade/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/iframe.meta/no-referrer-when-downgrade/img-tag.http.html.ini deleted file mode 100644 index ee412d1be75..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/iframe.meta/no-referrer-when-downgrade/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/gen/iframe.meta/no-referrer/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/iframe.meta/no-referrer/img-tag.http.html.ini deleted file mode 100644 index 5a9703788a1..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/iframe.meta/no-referrer/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/gen/iframe.meta/origin-when-cross-origin/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/iframe.meta/origin-when-cross-origin/img-tag.http.html.ini deleted file mode 100644 index e62bf5b224c..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/iframe.meta/origin-when-cross-origin/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/gen/iframe.meta/origin-when-crossorigin/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/iframe.meta/origin-when-crossorigin/img-tag.http.html.ini index 85a95ab3825..7646779a328 100644 --- a/tests/wpt/meta/referrer-policy/gen/iframe.meta/origin-when-crossorigin/img-tag.http.html.ini +++ b/tests/wpt/meta/referrer-policy/gen/iframe.meta/origin-when-crossorigin/img-tag.http.html.ini @@ -28,9 +28,3 @@ [Referrer Policy: Expects origin 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 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 diff --git a/tests/wpt/meta/referrer-policy/gen/iframe.meta/origin/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/iframe.meta/origin/img-tag.http.html.ini deleted file mode 100644 index a32c9a18510..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/iframe.meta/origin/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/gen/iframe.meta/same-origin/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/iframe.meta/same-origin/img-tag.http.html.ini deleted file mode 100644 index 20091400d9f..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/iframe.meta/same-origin/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/gen/iframe.meta/strict-origin-when-cross-origin/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/iframe.meta/strict-origin-when-cross-origin/img-tag.http.html.ini deleted file mode 100644 index e62bf5b224c..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/iframe.meta/strict-origin-when-cross-origin/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/gen/iframe.meta/strict-origin/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/iframe.meta/strict-origin/img-tag.http.html.ini deleted file mode 100644 index a32c9a18510..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/iframe.meta/strict-origin/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/gen/iframe.meta/unsafe-url/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/iframe.meta/unsafe-url/img-tag.http.html.ini deleted file mode 100644 index ee412d1be75..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/iframe.meta/unsafe-url/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/gen/iframe.meta/unset/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/iframe.meta/unset/img-tag.http.html.ini index 85a95ab3825..7646779a328 100644 --- a/tests/wpt/meta/referrer-policy/gen/iframe.meta/unset/img-tag.http.html.ini +++ b/tests/wpt/meta/referrer-policy/gen/iframe.meta/unset/img-tag.http.html.ini @@ -28,9 +28,3 @@ [Referrer Policy: Expects origin 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 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 diff --git a/tests/wpt/meta/referrer-policy/gen/req.attr/no-referrer-when-downgrade/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/req.attr/no-referrer-when-downgrade/img-tag.http.html.ini deleted file mode 100644 index ee412d1be75..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/req.attr/no-referrer-when-downgrade/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/gen/req.attr/no-referrer/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/req.attr/no-referrer/img-tag.http.html.ini deleted file mode 100644 index 5a9703788a1..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/req.attr/no-referrer/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/gen/req.attr/origin-when-cross-origin/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/req.attr/origin-when-cross-origin/img-tag.http.html.ini deleted file mode 100644 index e62bf5b224c..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/req.attr/origin-when-cross-origin/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/gen/req.attr/origin/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/req.attr/origin/img-tag.http.html.ini deleted file mode 100644 index a32c9a18510..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/req.attr/origin/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/gen/req.attr/same-origin/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/req.attr/same-origin/img-tag.http.html.ini deleted file mode 100644 index 20091400d9f..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/req.attr/same-origin/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/gen/req.attr/strict-origin-when-cross-origin/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/req.attr/strict-origin-when-cross-origin/img-tag.http.html.ini deleted file mode 100644 index e62bf5b224c..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/req.attr/strict-origin-when-cross-origin/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/gen/req.attr/strict-origin/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/req.attr/strict-origin/img-tag.http.html.ini deleted file mode 100644 index a32c9a18510..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/req.attr/strict-origin/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/gen/req.attr/unsafe-url/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/req.attr/unsafe-url/img-tag.http.html.ini deleted file mode 100644 index ee412d1be75..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/req.attr/unsafe-url/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/gen/top.http-rp/no-referrer-when-downgrade/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.http-rp/no-referrer-when-downgrade/img-tag.http.html.ini deleted file mode 100644 index ee412d1be75..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/top.http-rp/no-referrer-when-downgrade/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/gen/top.http-rp/no-referrer/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.http-rp/no-referrer/img-tag.http.html.ini deleted file mode 100644 index 5a9703788a1..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/top.http-rp/no-referrer/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/gen/top.http-rp/origin-when-cross-origin/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.http-rp/origin-when-cross-origin/img-tag.http.html.ini deleted file mode 100644 index e62bf5b224c..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/top.http-rp/origin-when-cross-origin/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/gen/top.http-rp/origin/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.http-rp/origin/img-tag.http.html.ini deleted file mode 100644 index a32c9a18510..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/top.http-rp/origin/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/gen/top.http-rp/same-origin/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.http-rp/same-origin/img-tag.http.html.ini deleted file mode 100644 index 20091400d9f..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/top.http-rp/same-origin/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/gen/top.http-rp/strict-origin-when-cross-origin/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.http-rp/strict-origin-when-cross-origin/img-tag.http.html.ini deleted file mode 100644 index e62bf5b224c..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/top.http-rp/strict-origin-when-cross-origin/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/gen/top.http-rp/strict-origin/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.http-rp/strict-origin/img-tag.http.html.ini deleted file mode 100644 index a32c9a18510..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/top.http-rp/strict-origin/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/gen/top.http-rp/unsafe-url/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.http-rp/unsafe-url/img-tag.http.html.ini deleted file mode 100644 index ee412d1be75..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/top.http-rp/unsafe-url/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/gen/top.http-rp/unset/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.http-rp/unset/img-tag.http.html.ini index 85a95ab3825..7646779a328 100644 --- a/tests/wpt/meta/referrer-policy/gen/top.http-rp/unset/img-tag.http.html.ini +++ b/tests/wpt/meta/referrer-policy/gen/top.http-rp/unset/img-tag.http.html.ini @@ -28,9 +28,3 @@ [Referrer Policy: Expects origin 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 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 diff --git a/tests/wpt/meta/referrer-policy/gen/top.meta/always/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.meta/always/img-tag.http.html.ini deleted file mode 100644 index ee412d1be75..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/top.meta/always/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/gen/top.meta/default/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.meta/default/img-tag.http.html.ini index 85a95ab3825..7646779a328 100644 --- a/tests/wpt/meta/referrer-policy/gen/top.meta/default/img-tag.http.html.ini +++ b/tests/wpt/meta/referrer-policy/gen/top.meta/default/img-tag.http.html.ini @@ -28,9 +28,3 @@ [Referrer Policy: Expects origin 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 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 diff --git a/tests/wpt/meta/referrer-policy/gen/top.meta/never/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.meta/never/img-tag.http.html.ini deleted file mode 100644 index 5a9703788a1..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/top.meta/never/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/gen/top.meta/no-referrer-when-downgrade/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.meta/no-referrer-when-downgrade/img-tag.http.html.ini deleted file mode 100644 index ee412d1be75..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/top.meta/no-referrer-when-downgrade/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/gen/top.meta/no-referrer/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.meta/no-referrer/img-tag.http.html.ini deleted file mode 100644 index 5a9703788a1..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/top.meta/no-referrer/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/gen/top.meta/origin-when-cross-origin/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.meta/origin-when-cross-origin/img-tag.http.html.ini deleted file mode 100644 index e62bf5b224c..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/top.meta/origin-when-cross-origin/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/gen/top.meta/origin-when-crossorigin/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.meta/origin-when-crossorigin/img-tag.http.html.ini index 85a95ab3825..7646779a328 100644 --- a/tests/wpt/meta/referrer-policy/gen/top.meta/origin-when-crossorigin/img-tag.http.html.ini +++ b/tests/wpt/meta/referrer-policy/gen/top.meta/origin-when-crossorigin/img-tag.http.html.ini @@ -28,9 +28,3 @@ [Referrer Policy: Expects origin 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 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 diff --git a/tests/wpt/meta/referrer-policy/gen/top.meta/origin/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.meta/origin/img-tag.http.html.ini deleted file mode 100644 index a32c9a18510..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/top.meta/origin/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/gen/top.meta/same-origin/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.meta/same-origin/img-tag.http.html.ini deleted file mode 100644 index 20091400d9f..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/top.meta/same-origin/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/gen/top.meta/strict-origin-when-cross-origin/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.meta/strict-origin-when-cross-origin/img-tag.http.html.ini deleted file mode 100644 index e62bf5b224c..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/top.meta/strict-origin-when-cross-origin/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/gen/top.meta/strict-origin/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.meta/strict-origin/img-tag.http.html.ini deleted file mode 100644 index a32c9a18510..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/top.meta/strict-origin/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/gen/top.meta/unsafe-url/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.meta/unsafe-url/img-tag.http.html.ini deleted file mode 100644 index ee412d1be75..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/top.meta/unsafe-url/img-tag.http.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/referrer-policy/gen/top.meta/unset/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.meta/unset/img-tag.http.html.ini index 85a95ab3825..7646779a328 100644 --- a/tests/wpt/meta/referrer-policy/gen/top.meta/unset/img-tag.http.html.ini +++ b/tests/wpt/meta/referrer-policy/gen/top.meta/unset/img-tag.http.html.ini @@ -28,9 +28,3 @@ [Referrer Policy: Expects origin 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 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 diff --git a/tests/wpt/meta/referrer-policy/generic/link-rel-prefetch.html.ini b/tests/wpt/meta/referrer-policy/generic/link-rel-prefetch.html.ini deleted file mode 100644 index d91206157fb..00000000000 --- a/tests/wpt/meta/referrer-policy/generic/link-rel-prefetch.html.ini +++ /dev/null @@ -1,3 +0,0 @@ -[link-rel-prefetch.html] - [Prefetched image.] - expected: FAIL diff --git a/tests/wpt/meta/referrer-policy/generic/multiple-headers-and-values.html.ini b/tests/wpt/meta/referrer-policy/generic/multiple-headers-and-values.html.ini deleted file mode 100644 index ff007175337..00000000000 --- a/tests/wpt/meta/referrer-policy/generic/multiple-headers-and-values.html.ini +++ /dev/null @@ -1,3 +0,0 @@ -[multiple-headers-and-values.html] - [Image uses the last recognized Referrer-Policy header value] - expected: FAIL diff --git a/tests/wpt/meta/referrer-policy/generic/multiple-headers-combined.html.ini b/tests/wpt/meta/referrer-policy/generic/multiple-headers-combined.html.ini deleted file mode 100644 index 332984d7323..00000000000 --- a/tests/wpt/meta/referrer-policy/generic/multiple-headers-combined.html.ini +++ /dev/null @@ -1,3 +0,0 @@ -[multiple-headers-combined.html] - [Image uses the last recognized Referrer-Policy header value] - expected: FAIL diff --git a/tests/wpt/meta/referrer-policy/generic/multiple-headers-one-unknown-token.html.ini b/tests/wpt/meta/referrer-policy/generic/multiple-headers-one-unknown-token.html.ini deleted file mode 100644 index 3c47ac16439..00000000000 --- a/tests/wpt/meta/referrer-policy/generic/multiple-headers-one-unknown-token.html.ini +++ /dev/null @@ -1,3 +0,0 @@ -[multiple-headers-one-unknown-token.html] - [Image uses last recognized referrer policy token from Referrer-Policy headers] - expected: FAIL diff --git a/tests/wpt/meta/referrer-policy/generic/multiple-headers.html.ini b/tests/wpt/meta/referrer-policy/generic/multiple-headers.html.ini deleted file mode 100644 index d14b69fd631..00000000000 --- a/tests/wpt/meta/referrer-policy/generic/multiple-headers.html.ini +++ /dev/null @@ -1,3 +0,0 @@ -[multiple-headers.html] - [Image uses the last recognized Referrer-Policy header] - expected: FAIL diff --git a/tests/wpt/meta/referrer-policy/generic/unsupported-csp-referrer-directive.html.ini b/tests/wpt/meta/referrer-policy/generic/unsupported-csp-referrer-directive.html.ini deleted file mode 100644 index e6b4a57d86e..00000000000 --- a/tests/wpt/meta/referrer-policy/generic/unsupported-csp-referrer-directive.html.ini +++ /dev/null @@ -1,3 +0,0 @@ -[unsupported-csp-referrer-directive.html] - [Image has a referrer despite CSP 'referrer' directive] - expected: FAIL |