1
0
Fork 0
firefox/testing/web-platform/tests/navigation-api/precommit-handler/precommitHandler-window-stop-before-commit.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

33 lines
1.1 KiB
HTML

<!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({ precommitHandler: async () => {} });
};
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);
}, " precommitHandler with window.stop() before commit");
</script>
</body>