diff options
Diffstat (limited to '')
-rw-r--r-- | test/wpt/tests/xhr/access-control-basic-allow.any.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/wpt/tests/xhr/access-control-basic-allow.any.js b/test/wpt/tests/xhr/access-control-basic-allow.any.js new file mode 100644 index 0000000..c895383 --- /dev/null +++ b/test/wpt/tests/xhr/access-control-basic-allow.any.js @@ -0,0 +1,12 @@ +// META: title=Tests CORS with Access-Control-Allow-Origin header +// META: script=/common/get-host-info.sub.js + + test(function() { + const xhr = new XMLHttpRequest; + + xhr.open("GET", get_host_info().HTTP_REMOTE_ORIGIN + "/xhr/resources/access-control-basic-allow.py", false); + + xhr.send(); + + assert_equals(xhr.responseText, "PASS: Cross-domain access allowed."); + }, "Allow basic"); |