My HTML5 tabindex skips over a link element. Even when using tabindex=0, the tabindex skips right over and ignores the <a> element. AFAIK <a> should already be in the tabindex (even without the tabindex attribute) as long as it has a href attribute.
sample code:
<a href="/game" tabindex="0">Hello world!</a>