Upstream version 7.35.139.0
[platform/framework/web/crosswalk.git] / src / chrome / test / data / login / deframe.html
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>