blob: 19cea8afc28069cdc0657e01406bcf1fbda0416e [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.reload();
await assertBothFulfill(t, result, navigation.currentEntry);
}, "reload() and transitionWhile() with a fulfilled promise");
</script>