summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/xhr/access-control-basic-allow-non-cors-safelisted-method-async.any.js
blob: 1e37f43f37f33fdcfd550f158be87e2c563a1b28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// META: title=Tests cross-origin async request with non-CORS-safelisted method
// META: script=/common/get-host-info.sub.js

    async_test((test) => {
      const xhr = new XMLHttpRequest;

      xhr.onload = test.step_func_done(() => {
        assert_equals(xhr.responseText, "PASS: Cross-domain access allowed.\nPASS: PUT data received");
      });

      xhr.onerror = test.unreached_func("Unexpected error.");

      xhr.open("PUT", get_host_info().HTTP_REMOTE_ORIGIN +
          "/xhr/resources/access-control-basic-put-allow.py");
      xhr.setRequestHeader("Content-Type", "text/plain; charset=UTF-8");
      xhr.send("PASS: PUT data received");
    }, "Allow async PUT request");