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
Paste setInterval(() => console.log(document.activeElement), 1024) into the console.
Focus the viewport.
Press tab repeatedly.
Expected outcome
Each time tab is pressed, the active element in the console should change. Depending on the page you test on, you should also see the visual focus indicator move forwards through the UI.
Actual outcome
Each time tab is pressed, the active element is still the <body> tag afterwards.
Recommendation
Remove the ev.preventDefault() call from the <App /> component's tab keydown event listener.
The text was updated successfully, but these errors were encountered:
Steps to reproduce
setInterval(() => console.log(document.activeElement), 1024)
into the console.Expected outcome
Each time tab is pressed, the active element in the console should change. Depending on the page you test on, you should also see the visual focus indicator move forwards through the UI.
Actual outcome
Each time tab is pressed, the active element is still the
<body>
tag afterwards.Recommendation
Remove the
ev.preventDefault()
call from the<App />
component's tab keydown event listener.The text was updated successfully, but these errors were encountered: