Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / http / tests / security / resources / sandboxed-iframe-form-top.html
blob97ecb161ad027dcc8505fb2ba5064fe6cfdb5e72
1 <html>
2 <body>
3 <form id="theForm" action="fail.html" method="GET" target="_top">
4 <input type="submit" value="Submit"/>
5 </form>
6 <script>
7 var f = document.getElementById('theForm');
8 f.submit();
9 setTimeout(function() {
10 if (window.testRunner)
11 testRunner.notifyDone();
12 }, 0);
13 </script>
14 </body>
15 </html>