Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / http / tests / misc / form-base-target-blank.html
blob4c0b580702d790eb6ea79f2f43fa499bb25c44c0
1 <html>
2 <head>
3 <base target="_blank"></base>
4 </head>
5 <body>
6 <form target="_self" method="post" action="resources/form-base-target-blank.html" name="f">
7 <input type="submit" value="Go">
8 </form>
9 <script>
10 if (window.testRunner) {
11 testRunner.dumpAsText();
12 testRunner.waitUntilDone();
14 document.f.submit();
15 </script>
16 </body>
17 </html>