Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!doctype html>
<meta charset="utf-8">
<title>history.go() uses this's associated document's browsing context to determine if navigation is allowed</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<iframe id="sandboxedIframe" srcdoc="hello" sandbox="allow-scripts allow-same-origin"></iframe>
<script>
const t = async_test();
t.step(() => {
history.pushState({}, null, "?prev=2");
history.pushState({}, null, "?prev=1");
history.pushState({}, null, "?current");
sandboxedIframe.contentWindow.history.go.call(history, -2);
});
window.onpopstate = t.step_func_done(() => {
assert_equals(location.search, "?prev=2");
});
</script>