Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 1 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /navigation-api/state/history-pushState.html?method=navigate - WPT Dashboard Interop Dashboard
- /navigation-api/state/history-pushState.html?method=updateCurrentEntry - WPT Dashboard Interop Dashboard
<!doctype html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="resources/helpers.js"></script>
<meta name="variant" content="?method=navigate">
<meta name="variant" content="?method=updateCurrentEntry">
<script>
test(() => {
updateStateBasedOnTestVariant(window, { data : "value" });
assert_equals(navigation.currentEntry.getState().data, "value");
history.pushState(1, "", "#push");
assert_equals(navigation.currentEntry.getState(), undefined);
}, "entry.getState() after history.pushState()");
</script>