summaryrefslogtreecommitdiffstats
path: root/dom/base/crashtests/1230422.html
blob: fbaa63d38512861742e9ceba05549b208bce0daf (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
27
28
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<script>

var a = new FileReader();

function f() {
  a.removeEventListener("loadend", f);
  g();
}

function g() {
  a.readAsBinaryString(new Blob());
}

a.addEventListener("loadend", f);

try {
  g();
  g();
} catch(e) {}

</script>
</body>
</html>