Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/browsers/browsing-the-web/history-traversal/same-url.html - WPT Dashboard Interop Dashboard
<title>Test same-URL navigation and its effects on history</title>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<div id=log></div>
<iframe src=resources/a.html></iframe>
<script>
async_test((t) => {
let state = "begin"
let initialLength = history.length
self[0].frameElement.onload = t.step_func(() => {
if(state === "b first") {
assert_equals(history.length, initialLength + 1, state)
state = "c first"
navigateFrameAfterDelay(t, "resources/c.html")
} else if (state === "c first") {
assert_equals(history.length, initialLength + 2, state)
state = "a second"
history.back(2)
} else if (state === "a second") {
assert_equals(history.length, initialLength + 2, state)
state = "a third"
navigateFrameAfterDelay(t, "resources/a.html")
} else if (state === "a third") {
assert_equals(history.length, initialLength + 2, state)
t.done()
}
})
onload = t.step_func(() => {
assert_equals(state, "begin")
state = "b first"
navigateFrameAfterDelay(t, "resources/b.html")
})
})
function navigateFrameAfterDelay(t, url) {
// Delay to avoid triggering the "replace" behavior which occurs if
// the page isn't yet completely loaded, which only occurs after the
// load event handlers have finished:
t.step_timeout(() => {
self[0].location = url
}, 0)
}
</script>