summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/XMLHttpRequest/abort-during-unsent.htm
blob: bc2f5cab53551d890d10b1cbd8a087ebf4f6bb77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!doctype html>
<html>
  <head>
    <title>XMLHttpRequest: abort() during UNSENT</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>
      var test = async_test()
      test.step(function() {
        var client = new XMLHttpRequest()
        client.onreadystatechange = function() {
          test.step(function() {
            assert_unreached()
          })
        }
        client.abort()
        assert_equals(client.readyState, 0)
      })
      test.done()
    </script>
  </body>
</html>