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

23 lines
240 B
HTML

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