summaryrefslogtreecommitdiffstats
path: root/js/xpconnect/crashtests/386680-1.html
blob: 3949730e4772d6a3f0af7e3cf9726a410d4f9779 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE HTML>
<html>
<head>

<script>

function boom()
{
  o = {};
  o.__proto__ = o.constructor;
  p = o.constructor.prototype;
  p.__proto__ = window;
  null.__proto__ = {};
}

</script>
</head>

<body onload="boom()">

</body>
</html>