tenfourfox/dom/bindings/crashtests/1010658-2.html

17 lines
237 B
HTML
Raw Normal View History

2017-04-19 07:56:45 +00:00
<!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>