summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/navigation-api/state/history-replaceState.html
blob: bdf3561639321ff4d307544d8ca19fceadebbd93 (plain)
1
2
3
4
5
6
7
8
9
10
11
<!doctype html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
test(() => {
  navigation.navigate("#", { history: "replace", state: { data: "value" } });
  assert_equals(navigation.currentEntry.getState().data, "value");
  history.replaceState(1, "", "#replace");
  assert_equals(navigation.currentEntry.getState(), undefined);
}, "entry.getState() after history.replaceState()");
</script>