Update web-platform-tests to revision b'4435c35d9085ed2be61e64d0093b8e1b0e7a877b'

This commit is contained in:
WPT Sync Bot 2022-11-25 01:21:31 +00:00
parent 901b76297d
commit 4031d79cea
383 changed files with 8858 additions and 2734 deletions

View file

@ -1,10 +1,17 @@
// META: variant=?1-2
// META: variant=?3-4
// META: variant=?5-6
// META: variant=?7-8
// META: variant=?9-10
// META: variant=?11-12
// META: variant=?1-1
// META: variant=?2-2
// META: variant=?3-3
// META: variant=?4-4
// META: variant=?5-5
// META: variant=?6-6
// META: variant=?7-7
// META: variant=?8-8
// META: variant=?9-9
// META: variant=?10-10
// META: variant=?11-11
// META: variant=?12-12
// META: variant=?13-last
// META: timeout=long
// META: script=/common/get-host-info.sub.js
// META: script=/common/utils.js
// META: script=/common/subset-tests.js
@ -17,27 +24,27 @@ const {REMOTE_ORIGIN} = get_host_info();
// variant = 1
subsetTest(embeddingTest,
"Parent embeds same-origin anonymous iframe", {
"Parent embeds same-origin credentialless iframe", {
expectation: EXPECT_LOAD,
});
// variant = 2
subsetTest(embeddingTest,
"Parent embeds cross-origin anonymous iframe", {
"Parent embeds cross-origin credentialless iframe", {
child_origin: REMOTE_ORIGIN,
expectation: EXPECT_LOAD,
});
// variant = 3
subsetTest(embeddingTest,
"COEP:require-corp parent embeds same-origin anonymous iframe", {
"COEP:require-corp parent embeds same-origin credentialless iframe", {
parent_headers: coep_require_corp,
expectation: EXPECT_LOAD,
});
// variant = 4
subsetTest(embeddingTest,
"COEP:require-corp parent embeds cross-origin anonymous iframe", {
"COEP:require-corp parent embeds cross-origin credentialless iframe", {
parent_headers: coep_require_corp,
child_origin: REMOTE_ORIGIN,
expectation: EXPECT_LOAD,
@ -45,14 +52,14 @@ subsetTest(embeddingTest,
// variant = 5
subsetTest(embeddingTest,
"COEP:credentialless parent embeds same-origin anonymous iframe", {
"COEP:credentialless parent embeds same-origin credentialless iframe", {
parent_headers: coep_credentialless,
expectation: EXPECT_LOAD,
});
// variant = 6
subsetTest(embeddingTest,
"COEP:credentialless parent embeds cross-origin anonymous iframe", {
"COEP:credentialless parent embeds cross-origin credentialless iframe", {
parent_headers: coep_credentialless,
child_origin: REMOTE_ORIGIN,
expectation: EXPECT_LOAD,
@ -61,7 +68,7 @@ subsetTest(embeddingTest,
// variant = 7
// Regression test for https://crbug.com/1314369
subsetTest(embeddingTest,
"COOP:same-origin + COEP:require-corp embeds same-origin anonymous iframe", {
"COOP:same-origin + COEP:require-corp embeds same-origin credentialless iframe", {
parent_headers: coop_same_origin + coep_require_corp,
expectation: EXPECT_LOAD,
});
@ -69,7 +76,7 @@ subsetTest(embeddingTest,
// variant = 8
// Regression test for https://crbug.com/1314369
subsetTest(embeddingTest,
"COOP:same-origin + COEP:require-corp embeds cross-origin anonymous iframe", {
"COOP:same-origin + COEP:require-corp embeds cross-origin credentialless iframe", {
parent_headers: coop_same_origin + coep_require_corp,
child_origin: REMOTE_ORIGIN,
expectation: EXPECT_LOAD,
@ -78,7 +85,7 @@ subsetTest(embeddingTest,
// variant = 9
// Regression test for https://crbug.com/1314369
subsetTest(embeddingTest,
"COOP:same-origin + COEP:credentialless embeds same-origin anonymous iframe", {
"COOP:same-origin + COEP:credentialless embeds same-origin credentialless iframe", {
parent_headers: coop_same_origin + coep_credentialless,
expectation: EXPECT_LOAD,
});
@ -86,7 +93,7 @@ subsetTest(embeddingTest,
// variant = 10
// Regression test for https://crbug.com/1314369
subsetTest(embeddingTest,
"COOP:same-origin + COEP:credentialless embeds cross-origin anonymous iframe", {
"COOP:same-origin + COEP:credentialless embeds cross-origin credentialless iframe", {
parent_headers: coop_same_origin + coep_credentialless,
child_origin: REMOTE_ORIGIN,
expectation: EXPECT_LOAD,
@ -94,14 +101,14 @@ subsetTest(embeddingTest,
// variant = 11
subsetTest(embeddingTest,
"Parents embeds a CSP:frame-ancestore anonymous iframe", {
"Parents embeds a CSP:frame-ancestore credentialless iframe", {
child_headers: "|headers(Content-Security-Policy,frame-ancestors 'none')",
expectation: EXPECT_BLOCK,
});
// variant = 12
subsetTest(embeddingTest,
"Cross-Origin-Isolated parent embeds same-origin COEP anonymous iframe", {
"Cross-Origin-Isolated parent embeds same-origin COEP credentialless iframe", {
parent_headers: coop_same_origin + coep_require_corp,
child_headers: coop_same_origin + coep_require_corp,
expectation: EXPECT_LOAD,
@ -109,7 +116,7 @@ subsetTest(embeddingTest,
// variant = 13
subsetTest(embeddingTest,
"Cross-Origin-Isolated parent embeds cross-origin COEP anonymous iframe", {
"Cross-Origin-Isolated parent embeds cross-origin COEP credentialless iframe", {
parent_headers: coop_same_origin + coep_require_corp,
child_headers: coop_same_origin + coep_require_corp,
child_origin: REMOTE_ORIGIN,