tenfourfox/js/xpconnect/crashtests/504000-1.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

22 lines
255 B
HTML

<!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>