-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fetch: test Cross-Origin-Resource-Policy: same-site's scheme restriction
Supplements #11171. For whatwg/fetch#733.
- Loading branch information
Showing
3 changed files
with
20 additions
and
1 deletion.
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
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) | ||
|
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
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>"); |