Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <html> | |
| 2 <head> | |
| 3 <script> | |
| 4 | |
| 5 // Attempts to trigger top-frame navigation. | |
| 6 function deframe() { | |
| 7 if (top.location != self.location) | |
| 8 top.location.href = self.location; | |
| 9 } | |
| 10 </script> | |
| 11 </head> | |
| 12 | |
| 13 <body onload="deframe();"> | |
| 14 This page will attempt to break out iframe. | |
| 15 </body> | |
| 16 </html> | |
| OLD | NEW |