summaryrefslogtreecommitdiffstats
path: root/dom/bindings/crashtests/1010658-2.html
blob: 4b80242ec94bac86a1756a4b7d2fb43fd856a61d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!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>