Sachsentext

Any element with an "onmousemove" attribute shoul have a keyboard-related action as well

If an element has an "onmousemove" attribute, it should also have an attribute that would make the action available with the keyboard only.

Example

Wrong

<a onmousemove="alert('Hello, there');" href="#">Open an alert.</a>

Right

<a onmousemove="alert('Hello, there');" onkeypdown="alert('Hello, there');" href="#">Open an alert.</a>