зеркало из https://github.com/mozilla/gecko-dev.git
17 строки
237 B
HTML
17 строки
237 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<script>
|
||
|
function boom()
|
||
|
{
|
||
|
window.__proto__ = function(){};
|
||
|
for (var i = 0; i < 10000; ++i) {
|
||
|
self.document;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
</script></head>
|
||
|
|
||
|
<body onload="boom();"></body>
|
||
|
</html>
|