summaryrefslogtreecommitdiffstats
path: root/dom/base/crashtests/371124-1-inner.html
blob: d8fb45519d896301f05b305d14a117c31408f3e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<html>
<head>
<script>

function boom()
{
  obj = document.getElementsByTagName("object")[0];
  obj.__proto__ = null;
  for (p in obj)
    dump(p + "\n");
}

</script>
</head>

<body onload="setTimeout(boom, 200);">

<object></object>

</body>
</html>