summaryrefslogtreecommitdiffstats
path: root/dom/base/crashtests/552651.html
blob: 8c2a9b09f010e27f170626e5168af5d013521db4 (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
<!DOCTYPE HTML>
<html class="reftest-wait">
<head>
  <title>Testcase for bug 552651</title>
  <script class="testbody" type="text/javascript">

function testCancel() {
  var xhr = new XMLHttpRequest();
  xhr.addEventListener("readystatechange", function(e) {
    if (xhr.readyState == 3) // NOTE : only leaks for state == 3
      xhr.abort();
    else if (xhr.readyState == 4)
      document.documentElement.className = "";
  }, false);

  xhr.open("GET", "552651.xml", true);
  xhr.send();
}
</script>
</head>
<body onload="testCancel()">
This test should not leak...
</body>
</html>