What Should Be Avoided
A page opens a new window when the user focuses on a button using the tab key.
HTML/CSS
<button onfocus="window.open('newpage.html')">Click Me</button>
Explanation:This behavior disorients users, particularly those using assistive technologies, by unexpectedly changing the context.