Update web-platform-tests to revision b'797e75946c24d0625f04247b16d33c26d4ada273'

This commit is contained in:
WPT Sync Bot 2023-04-30 01:27:44 +00:00
parent 4339b3bab4
commit 44e249bebb
414 changed files with 12588 additions and 11565 deletions

View file

@ -154,10 +154,19 @@ makePreflightTests({
sourceServer: Server.HTTPS_LOCAL,
sourceTreatAsPublic: true,
sourceName: "treat-as-public-address",
targetServer: Server.HTTPS_LOCAL,
targetServer: Server.OTHER_HTTPS_LOCAL,
targetName: "local",
});
promise_test_parallel(t => iframeTest(t, {
source: {
server: Server.HTTPS_LOCAL,
treatAsPublic: true,
},
target: { server: Server.HTTPS_LOCAL },
expected: IframeTestResult.SUCCESS,
}), "treat-as-public-address to local (same-origin): no preflight required.");
makePreflightTests({
sourceServer: Server.HTTPS_LOCAL,
sourceTreatAsPublic: true,
@ -196,6 +205,14 @@ iframeGrandparentTest({
name: "local to local, grandparent navigates: no preflight required.",
grandparentServer: Server.HTTPS_LOCAL,
child: { server: Server.HTTPS_PUBLIC },
grandchild: { server: Server.OTHER_HTTPS_LOCAL },
expected: IframeTestResult.SUCCESS,
});
iframeGrandparentTest({
name: "local to local (same-origin), grandparent navigates: no preflight required.",
grandparentServer: Server.HTTPS_LOCAL,
child: { server: Server.HTTPS_PUBLIC },
grandchild: { server: Server.HTTPS_LOCAL },
expected: IframeTestResult.SUCCESS,
});