summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/navigation-api/updateCurrentEntry-method/history-replaceState.html
blob: 3eb91a9a80cef8e1a2036181503867ec490c1168 (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.updateCurrentEntry({ 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>