summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/xhr/access-control-basic-allow.any.js
blob: c89538350a14fc8cb762eb748983ed5b2f438f09 (plain)
1
2
3
4
5
6
7
8
9
10
11
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");