Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Warnings

<!doctype html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="../navigation-methods/return-value/resources/helpers.js"></script>
<body>
<script>
promise_test(async t => {
// Wait for after the load event because window.stop() hangs the test harness
// if called before the load event.
await new Promise(resolve => window.onload = () => t.step_timeout(resolve, 0));
navigation.onnavigate = e => {
e.intercept({ commit: "after-transition" });
};
navigation.onnavigatesuccess = t.unreached_func("navigatesuccess must not fire");
let navigateerror_called = false;
navigation.onnavigateerror = t.step_func(() => {
navigateerror_called = true;
assert_equals(location.hash, "");
});
let promises = navigation.navigate("#ShouldNotCommit");
assert_equals(location.hash, "");
window.stop();
await assertBothRejectDOM(t, promises, "AbortError");
assert_equals(location.hash, "");
assert_true(navigateerror_called);
}, " { commit: 'after-transition' } with window.stop() before commit");
</script>
</body>