Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 1 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /navigation-api/navigation-methods/navigate-state-repeated-await.html - WPT Dashboard Interop Dashboard
<!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>