summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/loader/form-submission-before-load-get.html
blob: 32d47368058d26d0fec2a90cee7f0d602953bf18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<form method="get" action="resources/form-submission-before-load-page2.html"></form>
<script>
if (window.testRunner) {
    testRunner.clearBackForwardList();
    testRunner.dumpBackForwardList();
    testRunner.dumpAsText();
    testRunner.waitUntilDone();
}
// Test that submitting the form, using a GET method, before the 'load' event
// results in the current session history item being replaced by the next one.
document.forms[0].submit();
</script>