From b7373b42eeac24ff6cb3ed494ffbf09e781287da Mon Sep 17 00:00:00 2001 From: Anne van Kesteren Date: Mon, 18 Jun 2018 05:58:18 -0700 Subject: [PATCH] Fetch: basic syntax tests for Cross-Origin-Resource-Policy Supplements #11171. For https://github.com/whatwg/fetch/pull/733. --- .../cross-origin-resource-policy/syntax.any.js | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 fetch/cross-origin-resource-policy/syntax.any.js diff --git a/fetch/cross-origin-resource-policy/syntax.any.js b/fetch/cross-origin-resource-policy/syntax.any.js new file mode 100644 index 00000000000000..cf5b06d5c4f4b6 --- /dev/null +++ b/fetch/cross-origin-resource-policy/syntax.any.js @@ -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); +});