-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 1467848 [wpt PR 11428] - Fetch: test Cross-Origin-Resource-Policy…
…: same-site's scheme restriction, a=testonly Automatic update from web-platform-testsFetch: test Cross-Origin-Resource-Policy: same-site's scheme restriction Supplements #11171. For whatwg/fetch#733. -- wpt-commits: 7f0a106f3d5e9d3e7f70ba52aae896a3fffc2cc6 wpt-pr: 11428
- Loading branch information
Showing
4 changed files
with
45 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,4 +18,3 @@ def main(request, response): | |
response.writer.end_headers() | ||
|
||
response.writer.write(body) | ||
|
7 changes: 7 additions & 0 deletions
7
testing/web-platform/tests/fetch/cross-origin-resource-policy/scheme-restriction.any.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
// META: script=/common/get-host-info.sub.js | ||
|
||
promise_test(t => { | ||
return promise_rejects(t, | ||
new TypeError(), | ||
fetch(get_host_info().HTTPS_REMOTE_ORIGIN + "/fetch/cross-origin-resource-policy/resources/hello.py?corp=same-site", { mode: "no-cors" })); | ||
}, "Cross-Origin-Resource-Policy: same-site blocks retrieving HTTPS from HTTP"); |
13 changes: 13 additions & 0 deletions
13
.../web-platform/tests/fetch/cross-origin-resource-policy/scheme-restriction.https.window.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// META: script=/common/get-host-info.sub.js | ||
|
||
promise_test(t => { | ||
const img = new Image(); | ||
img.src = get_host_info().HTTP_REMOTE_ORIGIN + "/fetch/cross-origin-resource-policy/resources/image.py?corp=same-site"; | ||
return new Promise((resolve, reject) => { | ||
img.onload = resolve; | ||
img.onerror = reject; | ||
document.body.appendChild(img); | ||
}).finally(() => { | ||
img.remove(); | ||
}); | ||
}, "Cross-Origin-Resource-Policy does not block Mixed Content <img>"); |