If an element has an "ondblclick" attribute, it should also have an attribute that would make the action available with the keyboard only.
<a ondblclick="alert('Hello, there');" href="#">Open an alert.</a>
<a ondblclick="alert('Hello, there');" onkeypress="alert('Hello, there');"
href="#">Open an alert.</a>