Sachsentext

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

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

Example

Wrong

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

Right

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