1
0
Fork 0
firefox/testing/web-platform/tests/navigation-api/navigation-methods/navigate-state-repeated-await.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

13 lines
554 B
HTML

<!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>