Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <html> | 1 <html> |
| 2 <body> | 2 <body> |
| 3 <H1>Evil IFrame</H1> | 3 <H1>Evil IFrame</H1> |
| 4 <div id="evilDiv"> | 4 <div id="evilDiv"> |
| 5 This frame is loaded over insecure HTTPS. | 5 This frame is loaded over insecure HTTPS. |
| 6 </div> | 6 </div> |
| 7 | 7 <script> |
| 8 if(window.location.search.indexOf("open_popup") != -1) { | |
| 9 // Popup name must be empty so that this always opens a new popup window. | |
| 10 window.open("about:blank", "", "toolbar=0"); | |
| 11 } | |
| 12 </script> | |
| 8 </body> | 13 </body> |
| 9 </html> | 14 </html> |
| OLD | NEW |