summaryrefslogtreecommitdiffstats
path: root/devtools/client/shared/components/test/chrome/test_tree-view_01.html
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:14:29 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:14:29 +0000
commitfbaf0bb26397aa498eb9156f06d5a6fe34dd7dd8 (patch)
tree4c1ccaf5486d4f2009f9a338a98a83e886e29c97 /devtools/client/shared/components/test/chrome/test_tree-view_01.html
parentReleasing progress-linux version 124.0.1-1~progress7.99u1. (diff)
downloadfirefox-fbaf0bb26397aa498eb9156f06d5a6fe34dd7dd8.tar.xz
firefox-fbaf0bb26397aa498eb9156f06d5a6fe34dd7dd8.zip
Merging upstream version 125.0.1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'devtools/client/shared/components/test/chrome/test_tree-view_01.html')
-rw-r--r--devtools/client/shared/components/test/chrome/test_tree-view_01.html25
1 files changed, 23 insertions, 2 deletions
diff --git a/devtools/client/shared/components/test/chrome/test_tree-view_01.html b/devtools/client/shared/components/test/chrome/test_tree-view_01.html
index 0acae4c1dc..7a97dfa917 100644
--- a/devtools/client/shared/components/test/chrome/test_tree-view_01.html
+++ b/devtools/client/shared/components/test/chrome/test_tree-view_01.html
@@ -63,6 +63,26 @@ window.onload = function() {
el.focus();
}
+ function getExpectedActiveElementForFinalShiftTab() {
+ if (!SpecialPowers.getBoolPref("dom.disable_tab_focus_to_root_element")) {
+ return treeViewEl.ownerDocument.documentElement;
+ }
+
+ // When tab focus mode is applied, the "Run Chrome Tests" button is not
+ // focusable, so this Shift+Tab moves the focus to a Chrome UI element
+ // instead of the "Run Chrome Tests" button, which makes the focus to
+ // move to a browsing context that has a different top level browsing context
+ // than the current browsing context. Since top level browsing contexts are
+ // different, the activeElement in the old document is not cleared. Also
+ // this is only the case when e10s is enabled.
+ if (SpecialPowers.getBoolPref("accessibility.tabfocus_applies_to_xul") &&
+ SpecialPowers.Services.appinfo.browserTabsRemoteAutostart) {
+ return treeViewEl;
+ }
+
+ return treeViewEl.ownerDocument.body;
+ }
+
const tests = [{
name: "Test default TreeView state. Keyboard focus is set to document " +
"body by default.",
@@ -255,8 +275,9 @@ window.onload = function() {
synthesizeKey("KEY_Tab", { shiftKey: true });
},
state: { selected: "/B", active: null },
- activeElement: treeViewEl.ownerDocument.documentElement,
- }];
+ activeElement: getExpectedActiveElementForFinalShiftTab(),
+ }
+ ];
for (const test of tests) {
const { action, event, state, name } = test;