blob: 2fe78e53e99f1cd59a0b2488cd60de00c0ffef17 [file] [log] [blame]
<!doctype html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="resources/helpers.js"></script>
<script>
promise_test(async t => {
navigation.onnavigate = e => e.transitionWhile(Promise.resolve({ abc: 'def' }));
const result = navigation.navigate("#1");
await assertBothFulfill(t, result, navigation.currentEntry);
assert_equals((new URL(navigation.currentEntry.url)).hash, "#1");
}, "navigate() and transitionWhile() with a fulfilled promise");
</script>