Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / frames / iframe-target.html
blob87433e68c948f9e1fc93afbd1f0b6a68234d9ea0
1 <html>
2 <head>
3 <script>
4 function runTests() {
5 if (window.testRunner)
6 testRunner.dumpAsText();
8 var l = document.getElementById('theform');
9 l.submit()
11 </script>
12 </head>
13 <body onload="runTests()">
14 <form id="theform" action="about:blank" target="theframe">
15 <input type="submit">
16 <iframe name="theframe">
17 </iframe>
18 <div>
19 This tests that frame targets work. If this text is successful, this text should still be shown.
20 </div>
21 </body>
22 </html>