-
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 1467831 [wpt PR 11427] - Fetch: basic syntax tests for Cross-Orig…
…in-Resource-Policy, a=testonly Automatic update from web-platform-testsFetch: basic syntax tests for Cross-Origin-Resource-Policy Supplements #11171. For whatwg/fetch#733. -- wpt-commits: b7373b42eeac24ff6cb3ed494ffbf09e781287da wpt-pr: 11427
- Loading branch information
Showing
2 changed files
with
32 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
18 changes: 18 additions & 0 deletions
18
testing/web-platform/tests/fetch/cross-origin-resource-policy/syntax.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,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); | ||
}); |