diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:47:29 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:47:29 +0000 |
commit | 0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d (patch) | |
tree | a31f07c9bcca9d56ce61e9a1ffd30ef350d513aa /testing/web-platform/tests/navigation-api/focus-reset/change-focus-then-remove-during-intercept.html | |
parent | Initial commit. (diff) | |
download | firefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.tar.xz firefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.zip |
Adding upstream version 115.8.0esr.upstream/115.8.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/navigation-api/focus-reset/change-focus-then-remove-during-intercept.html')
-rw-r--r-- | testing/web-platform/tests/navigation-api/focus-reset/change-focus-then-remove-during-intercept.html | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/testing/web-platform/tests/navigation-api/focus-reset/change-focus-then-remove-during-intercept.html b/testing/web-platform/tests/navigation-api/focus-reset/change-focus-then-remove-during-intercept.html new file mode 100644 index 0000000000..a5d8062ce0 --- /dev/null +++ b/testing/web-platform/tests/navigation-api/focus-reset/change-focus-then-remove-during-intercept.html @@ -0,0 +1,40 @@ +<!doctype html> +<script src="/resources/testharness.js"></script> +<script src="/resources/testharnessreport.js"></script> +<body> +<script> +promise_test(async t => { + let intercept_resolve; + navigation.addEventListener("navigate", e => { + e.intercept({ handler: () => new Promise(resolve => intercept_resolve = resolve), + focusReset: "after-transition" }); + }, { once: true }); + + const button = document.body.appendChild(document.createElement("button")); + const button2 = document.body.appendChild(document.createElement("button")); + button2.tabIndex = 0; + t.add_cleanup(() => { + button.remove(); + button2.remove(); + }); + + assert_equals(document.activeElement, document.body, "Start on body"); + button.focus(); + assert_equals(document.activeElement, button, "focus() worked"); + + const finished = navigation.navigate("#1").finished; + + let onfocus_called = false; + document.body.onfocus = onfocus_called = true; + button.remove(); + assert_equals(document.activeElement, document.body, "Removing the element reset focus"); + assert_true(onfocus_called); + + document.body.onfocus = t.unreached_func("onfocus shouldn't fire a second time due to focus reset"); + intercept_resolve(); + await finished; + assert_equals(document.activeElement, document.body, "Focus remains on document.body after promise fulfills"); + await new Promise(resolve => t.step_timeout(resolve, 10)); +}, ""); +</script> +</body> |