mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07: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>
|