blob: 913218cb1b271177b5e53a95fd9b8cb1305f77da [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<title>Try to DOS the browser with popups</title>
<script>
function test() {
for (var i = 0; i < 1000; ++i)
window.open("about:blank");
}
</script>
</head>
<body onload="test()">
pop-up test page
</body>
</html>