summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/xhr/access-control-basic-allow-access-control-origin-header.any.js
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/xhr/access-control-basic-allow-access-control-origin-header.any.js')
-rw-r--r--testing/web-platform/tests/xhr/access-control-basic-allow-access-control-origin-header.any.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/testing/web-platform/tests/xhr/access-control-basic-allow-access-control-origin-header.any.js b/testing/web-platform/tests/xhr/access-control-basic-allow-access-control-origin-header.any.js
new file mode 100644
index 0000000000..12b9cf21b2
--- /dev/null
+++ b/testing/web-platform/tests/xhr/access-control-basic-allow-access-control-origin-header.any.js
@@ -0,0 +1,13 @@
+// META: title=Access control test with origin header
+// META: script=/common/get-host-info.sub.js
+
+ async_test(function(test) {
+ const xhr = new XMLHttpRequest;
+
+ xhr.open("GET", get_host_info().HTTP_REMOTE_ORIGIN + "/xhr/resources/access-control-origin-header.py", false);
+ xhr.send();
+
+ assert_equals(xhr.responseText, "PASS: Cross-domain access allowed.\n" +
+ "HTTP_ORIGIN: " + get_host_info().HTTP_ORIGIN);
+ test.done();
+ }, "Access control test with origin header");