blob: 8b4e25d3d965cd92e2ded490ab8550e5e0800ee5 [file] [log] [blame]
<!doctype html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
test(() => {
navigation.updateCurrentEntry({ state: { data: "value" } });
assert_equals(navigation.currentEntry.getState().data, "value");
history.replaceState(1, "", "#replace");
assert_equals(navigation.currentEntry.getState(), undefined);
}, "appHistoryEntry.getState() after history.replaceState()");
</script>