You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When interacting with elements that have the ARIA role="application", JAWS sends multiple unnecessary keyboard events when arrow keys are pressed and held. This behavior disrupts interactions that rely on precise keyboard event handling.
Steps to Reproduce:
Use the following HTML and JavaScript code to set up the test environment:
HTML:
<divrole="application"><divtabindex="0" id="interactive">Focus me, then press and hold arrow keys</div></div>
Expected Behavior: Several "keydown received" messages should be logged continuously while the key is held down. A single "keyup received" message should be logged when the key is released.
Actual Behavior: A continuous stream of both "keydown received" and "keyup received" messages appear while the key remains pressed.
The text was updated successfully, but these errors were encountered:
When interacting with elements that have the ARIA role="application", JAWS sends multiple unnecessary keyboard events when arrow keys are pressed and held. This behavior disrupts interactions that rely on precise keyboard event handling.
Steps to Reproduce:
HTML:
Move focus to the element with id="interactive".
Press and hold any arrow key.
Expected Behavior: Several "keydown received" messages should be logged continuously while the key is held down. A single "keyup received" message should be logged when the key is released.
Actual Behavior: A continuous stream of both "keydown received" and "keyup received" messages appear while the key remains pressed.
The text was updated successfully, but these errors were encountered: