| <html> | |
| <head> | |
| <script> | |
| // Attempts to trigger top-frame navigation. | |
| function deframe() { | |
| if (top.location != self.location) | |
| top.location.href = self.location; | |
| } | |
| </script> | |
| </head> | |
| <body onload="deframe();"> | |
| This page will attempt to break out iframe. | |
| </body> | |
| </html> |