Exploring the following scenario:
<a tabindex="0" href="">With TabIndex</a>
<a href="">Without TabIndex</a>
https://jsfiddle.net/uLg7jyo9/1/
Click on the first link, move away and release the mouse, observe that the blue border remains.
Repeat the same action with the second link and notice that the blue border disappears.
I am seeking a solution to make tab index impact tab events only, not click events. How can I resolve this issue?
Note: It appears that Firefox handles both cases in a similar manner.