mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-27 02:05:07 +02:00
LibWeb: Use reject_the_finished_promise() in abort_a_navigate_event()
This aligns our implementation with the specification. Doing this fixes a number of WPT tests because this sets `m_ongoing_api_method_tracker` to null, avoiding an assertion that previously caused a crash.
This commit is contained in:
committed by
Shannon Booth
parent
206a18acd4
commit
dc649a7e46
Notes:
github-actions[bot]
2026-02-14 19:23:21 +00:00
Author: https://github.com/tcl3 Commit: https://github.com/LadybirdBrowser/ladybird/commit/dc649a7e464 Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/7875 Reviewed-by: https://github.com/shannonbooth ✅
@@ -0,0 +1,23 @@
|
||||
<!doctype html>
|
||||
<script src="../../resources/testharness.js"></script>
|
||||
<script src="../../resources/testharnessreport.js"></script>
|
||||
<div id="d"></div>
|
||||
<script>
|
||||
promise_test(async () => {
|
||||
let onnavigate_called = false;
|
||||
navigation.onnavigate = () => onnavigate_called = true;
|
||||
await navigation.navigate("#d").committed;
|
||||
assert_equals(location.hash, "#d");
|
||||
assert_true(onnavigate_called);
|
||||
assert_equals(document.querySelector(":target"), d);
|
||||
}, "navigate() navigates same-document and fires onnavigate (async)");
|
||||
|
||||
test(() => {
|
||||
let onnavigate_called = false;
|
||||
navigation.onnavigate = () => onnavigate_called = true;
|
||||
navigation.navigate("#d");
|
||||
assert_equals(location.hash, "#d");
|
||||
assert_true(onnavigate_called);
|
||||
assert_equals(document.querySelector(":target"), d);
|
||||
}, "navigate() navigates same-document and fires onnavigate (sync)");
|
||||
</script>
|
||||
Reference in New Issue
Block a user