-
Notifications
You must be signed in to change notification settings - Fork 0
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 UltraBlame original commit: 0d5c1298c115f6ccc0b1e19e7494b1dd72ae7f18
- Loading branch information
Showing
2 changed files
with
211 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
119 changes: 119 additions & 0 deletions
119
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,119 @@ | ||
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 | ||
= | ||
> | ||
{ | ||
promise_test | ||
( | ||
t | ||
= | ||
> | ||
{ | ||
return | ||
fetch | ||
( | ||
crossOriginURL | ||
+ | ||
encodeURIComponent | ||
( | ||
incorrectHeaderValue | ||
) | ||
{ | ||
mode | ||
: | ||
" | ||
no | ||
- | ||
cors | ||
" | ||
} | ||
) | ||
; | ||
} | ||
" | ||
Parsing | ||
Cross | ||
- | ||
Origin | ||
- | ||
Resource | ||
- | ||
Policy | ||
: | ||
" | ||
+ | ||
incorrectHeaderValue | ||
) | ||
; | ||
} | ||
) | ||
; |