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


function f() {
  for (var j in { a:1, b:2, c:3, d:4, e:5 }) {
  }
}

function boom()
{
  f();
  Function.prototype.__defineGetter__("xxx", function(){});
}

</script></head>

<body onload="boom();"></body>
</html>