<!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.preventDefault();
await assertBothRejectDOM(t, navigation.navigate("#"), "AbortError");
}, "navigate() when the onnavigate handler calls preventDefault()");
</script>