Revision 149c83d77d05dafea4a5a4dadf6670bfadc8e360 authored by moz-wptsync-bot on 16 March 2018, 13:38:52 UTC, committed by moz-wptsync-bot on 16 March 2018, 13:38:52 UTC
bugzilla-url: https://bugzilla.mozilla.org/show_bug.cgi?id=1445883
gecko-commit: 0f81334efa0a008db8931a41eef2d26a77d0e800
gecko-integration-branch: mozilla-inbound
gecko-reviewers: smaug
1 parent 1cbb928
Raw File
send-conditional-cors.htm
<!doctype html>
<title>XMLHttpRequest: send() - conditional cross-origin requests</title>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<script src=/cors/support.js?pipe=sub></script>
<div id=log></div>
<script>
function request(withCORS, desc) {
  async_test(t => {
    const client = new XMLHttpRequest,
          identifier = Math.random(),
          cors = withCORS ? "&cors=yes" : "",
          url = CROSSDOMAIN + "resources/conditional.py?tag=" + identifier + cors
    client.onload = t.step_func(() => {
      assert_equals(client.status, 200)
      assert_equals(client.statusText, "OK")
      assert_equals(client.responseText, "MAYBE NOT")

      if(withCORS) {
        client.onload = t.step_func_done(() => {
          assert_equals(client.status, 304)
          assert_equals(client.statusText, "SUPERCOOL")
          assert_equals(client.responseText, "")
        })
      } else {
        client.onload = null
        client.onerror = t.step_func_done(() => {
          assert_equals(client.status, 0)
          assert_equals(client.statusText, "")
        })
      }
      client.open("GET", url)
      client.setRequestHeader("If-None-Match", identifier)
      client.send()
    })
    client.open("GET", url)
    client.send()
  }, desc)
}
request(false, "304 without appropriate CORS header")
request(true, "304 with appropriate CORS header")
</script>
back to top