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
abort-during-headers-received.htm
<!doctype html>
<html>
  <head>
    <title>XMLHttpRequest: abort() during HEADERS_RECEIVED</title>
    <script src="/resources/testharness.js"></script>
    <script src="/resources/testharnessreport.js"></script>
    <link rel="help" href="https://xhr.spec.whatwg.org/#the-abort()-method" data-tested-assertations="following-sibling::ol/li[4] following-sibling::ol/li[5]" />
  </head>
  <body>
    <div id="log"></div>
    <script>
      async_test(test => {
        var client = new XMLHttpRequest(),
            result = [],
            expected = [1, 2, 4]
        client.onreadystatechange = test.step_func(function() {
          result.push(client.readyState);
          if (client.readyState === 2) {
            assert_equals(client.status, 200)
            assert_equals(client.statusText, "OK")
            assert_equals(client.responseXML, null)
            client.abort();
            assert_equals(client.readyState, 0)
            assert_equals(client.status, 0)
            assert_equals(client.statusText, "")
            assert_equals(client.responseXML, null)
            assert_equals(client.getAllResponseHeaders(), "")
          }
          if (client.readyState === 4) {
            assert_equals(client.readyState, 4)
            assert_equals(client.status, 0)
            assert_equals(client.statusText, "")
            assert_equals(client.responseXML, null)
            assert_equals(client.getAllResponseHeaders(), "")
          }
        })
        client.onloadend = test.step_func(function() {
          assert_equals(client.readyState, 4)
          assert_equals(client.status, 0)
          assert_equals(client.statusText, "")
          assert_equals(client.responseXML, null)
          assert_equals(client.getAllResponseHeaders(), "")
          test.step_timeout(function() {
            assert_array_equals(result, expected)
            test.done();
          }, 100); // wait a bit in case XHR timeout causes spurious event
        })
        client.open("GET", "resources/well-formed.xml")
        client.send(null)
      })
    </script>
  </body>
</html>
back to top