| <!DOCTYPE html> |
| <html> |
| <body> |
| <script> |
| if (window.testRunner) { |
| testRunner.dumpAsText(); |
| testRunner.dumpChildFramesAsText(); |
| testRunner.waitUntilDone(); |
| testRunner.dumpBackForwardList(); |
| } |
| |
| onload = function() |
| { |
| if (sessionStorage.didNav) { |
| delete sessionStorage.didNav; |
| delete sessionStorage.topShouldNavAndGoBack; |
| if (window.testRunner) |
| testRunner.notifyDone(); |
| } else { |
| sessionStorage.topShouldNavAndGoBack = true; |
| document.getElementById('the-form').submit(); |
| } |
| } |
| |
| </script> |
| |
| <p>Tests that a POST targetted to a frame is handled correctly when navigating away and coming back to the page.</p> |
| |
| <form id="the-form" method="POST" action="resources/form-target-uncached.pl" target="target-frame"> |
| <input name="the-input" value="input value goes here"> |
| </form> |
| |
| <iframe name="target-frame" src="about:blank"></iframe> |
| </body> |
| </html> |