summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/navigation-api/state/history-pushState.html
blob: 7d3c79ba6ca2872754bdbf6073390405d9c13e99 (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.pushState(1, "", "#push");
  assert_equals(navigation.currentEntry.getState(), undefined);
}, "entry.getState() after history.pushState()");
</script>