OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE hyml> | |
2 <html> | |
3 <head> | |
4 <title>Try to DOS the browser with popups</title> | |
5 <script> | |
6 function test() { | |
7 for (var i = 0; i < 1000; ++i) | |
8 window.open("about:blank"); | |
9 } | |
10 </script> | |
11 </head> | |
12 <body onload="test()"> | |
13 pop-up test page | |
14 </body> | |
15 </html> | |
OLD | NEW |