Chromium Code Reviews| 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) | |
|
Bernhard Bauer
2013/09/12 13:39:22
Nit: space before and after less-than sign.
| |
| 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 |