https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 15b2fb016de4e0cba87495a31bac3a20a5ab9df5 authored by Robert Ma on 05 April 2018, 18:43:39 UTC
Fix the unit test for affected tests
Tip revision: 15b2fb0
access-control-preflight-sync-not-supported.htm
<!DOCTYPE html>
<html>
  <head>
    <title>Sync PUT request denied at preflight</title>
    <script src="/resources/testharness.js"></script>
    <script src="/resources/testharnessreport.js"></script>
    <script src="/common/get-host-info.sub.js"></script>
    <script src="/common/utils.js"></script>
  </head>
  <body>
    <script type="text/javascript">
const uuid = token();
const url = get_host_info().HTTP_REMOTE_ORIGIN +
      "/xhr/resources/access-control-preflight-denied.py?token=" + uuid;

test(() => {
  let xhr = new XMLHttpRequest;
  xhr.open("GET", url + "&command=reset", false);
  xhr.send();

  xhr = new XMLHttpRequest;
  xhr.open("PUT", url, false);

  try {
    xhr.send("");
  } catch(e) {
    xhr = new XMLHttpRequest;
    xhr.open("GET", url + "&command=complete", false);
    xhr.send();
    assert_equals(xhr.responseText, "Request successfully blocked.");
    return;
  }

  assert_unreached("Cross-domain access allowed without throwing exception");
});
    </script>
  </body>
</html>
back to top