mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-03 19:05:35 +00:00
23 lines
240 B
HTML
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>
|