Skip to content

Commit

Permalink
Fetch: basic syntax tests for Cross-Origin-Resource-Policy
Browse files Browse the repository at this point in the history
Supplements #11171.

For whatwg/fetch#733.
  • Loading branch information
annevk authored Jun 18, 2018
1 parent 7c0611d commit b7373b4
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions fetch/cross-origin-resource-policy/syntax.any.js
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);
});

0 comments on commit b7373b4

Please sign in to comment.