Mypal/js/xpconnect/crashtests/386680-1.html
2019-03-11 13:26:37 +03: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>