Replies: 2 comments
-
Welcome @RD-Brown , We are unable to process this issue as it stands. Kind Regards, |
Beta Was this translation helpful? Give feedback.
-
I can reproduce this, but |
Beta Was this translation helpful? Give feedback.
-
TestNav is Pearson’s online test delivery platform and is based on Chromium. We typically set the JAWS focus to the top of the page every time a user navigates between items in a test. However, in Chrome versions higher than 110 we have noticed that the focus does not consistently start at the top of the page, and the Up/Down Arrow behavior doesn’t seem to look at the focus element. (Note that this behavior is also present in JAWS.)
The following code is used to set focus:
util.addFTListener = function () {
$(document).off('inform.loadingHidden', util.focusFirstTabbable).one('inform.loadingHidden', util.focusFirstTabbable);
};
util.focusFirstTabbable = function () {
setTimeout(function () { $('#firstTabbable').focus() }, 10);
util.removeFTListener();
};
util.removeFTListener = function () {
$(document).off('inform.loadingHidden', util.focusFirstTabbable);
}
Steps to reproduce:
Actual behavior:
Focus is often placed in the middle of the page content.
Expected behavior:
Focus should begin at the top of the page.
NVDA logs, crash dumps and other attachments:
System configuration
Windows 11 Pro, Version 10.0.22000 Build 22000
64-bit, RAM 32.0 GB
Processor Intel(R) Core(TM) i7-8665U CPU @ 1.90GHz 2.11 GHz
NVDA installed/portable/running from source:
Installed
NVDA version:
2023.1 (2023.1.0.27913)
Windows version:
Windows 11
Name and version of other software in use when reproducing the issue:
Chrome 114.0.5735.135
Other information about your system:
Other questions
Does the issue still occur after restarting your computer?
Yes
Have you tried any other versions of NVDA? If so, please report their behaviors.
No
If NVDA add-ons are disabled, is your problem still occurring?
Yes
Does the issue still occur after you run the COM Registration Fixing Tool in NVDA's tools menu?
Yes
Beta Was this translation helpful? Give feedback.
All reactions