| OLD | NEW |
| (Empty) | |
| 1 <!DOCTYPE html> |
| 2 <html> |
| 3 <script> |
| 4 if (window.testRunner) { |
| 5 testRunner.dumpAsText(); |
| 6 testRunner.dumpChildFramesAsText(); |
| 7 } |
| 8 |
| 9 function onLoad() { |
| 10 if (window.testRunner) { |
| 11 testRunner.logToStderr("Caling waitUntilDone"); |
| 12 testRunner.waitUntilDone(); |
| 13 } |
| 14 document.forms[0].submit(); |
| 15 testRunner.logToStderr("Submitting the form"); |
| 16 } |
| 17 </script> |
| 18 <body onload="onLoad();"> |
| 19 <form method="POST" action="https://localhost:8443/navigation/resources/form-tar
get.pl" target="foo"> |
| 20 Test field: <input name="test-field" type="text" value="test-value"> |
| 21 <input type="submit" value="Submit"> |
| 22 </form> |
| 23 <iframe name="foo" src="https://localhost:8443/navigation/resources/form-target.
pl"></iframe> |
| 24 </body> |
| 25 </html> |
| OLD | NEW |