summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/navigation-api/navigation-methods/navigate-state-repeated-await.html
blob: 539b3dc1da9de9c156b44eac1f54d9dec3c1b0de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<!doctype html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
promise_test(async t => {
  navigation.onnavigate = e => e.intercept();

  await navigation.navigate('/foo', {state: {foo: 1}}).committed;
  assert_equals(navigation.currentEntry.getState().foo, 1);
  await navigation.navigate('/foo', {state: {foo: 2}}).committed;
  assert_equals(navigation.currentEntry.getState().foo, 2);
}, "navigate() with state should work correctly when called repeatedly - with awaits");
</script>