-
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: basic syntax tests for Cross-Origin-Resource-Policy
Supplements #11171. For whatwg/fetch#733.
- Loading branch information
Showing
1 changed file
with
18 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// META: script=/common/get-host-info.sub.js | ||
|
||
const crossOriginURL = get_host_info().HTTP_REMOTE_ORIGIN + "/fetch/cross-origin-resource-policy/resources/hello.py?corp="; | ||
|
||
[ | ||
"same", | ||
"same, same-origin", | ||
"SAME-ORIGIN", | ||
"Same-Origin", | ||
"same-origin, <>", | ||
"same-origin, same-origin" | ||
].forEach(incorrectHeaderValue => { | ||
// Note: an incorrect value results in a successful load, so this test is only meaningful in | ||
// implementations with support for the header. | ||
promise_test(t => { | ||
return fetch(crossOriginURL + encodeURIComponent(incorrectHeaderValue), { mode: "no-cors" }); | ||
}, "Parsing Cross-Origin-Resource-Policy: " + incorrectHeaderValue); | ||
}); |