gecko/js/xpconnect/crashtests/386680-1.html

23 lines
240 B
HTML
Raw Normal View History

2008-04-22 21:16:56 -07:00
<!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>