24 lines
893 B
HTML
24 lines
893 B
HTML
<!doctype html>
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<script>
|
|
async_test(t => {
|
|
window.onload = t.step_func(() => {
|
|
let abort_signal;
|
|
let onabort_called = false;
|
|
navigation.onnavigatesuccess = t.unreached_func("onnavigatesuccess");
|
|
navigation.onnavigate = t.step_func(e => {
|
|
abort_signal = e.signal;
|
|
abort_signal.onabort = () => onabort_called = true;
|
|
});
|
|
let committed_promise = navigation.navigate("?1").committed;
|
|
window.stop();
|
|
assert_true(abort_signal.aborted);
|
|
assert_true(onabort_called);
|
|
promise_rejects_dom(t, "AbortError", committed_promise);
|
|
// Complete the test asynchronously to ensure that onnavigatesuccess
|
|
// didn't fire on a microtask.
|
|
t.step_timeout(t.step_func_done(() => {}), 0);
|
|
});
|
|
}, "window.stop() signals event.signal");
|
|
</script>
|