https://bugzilla.wikimedia.org/show_bug.cgi?id=29199
--- Comment #27 from Jesús Martínez Novo (Ciencia Al Poder) <[email protected]> --- (In reply to Nemo from comment #26) > Would tabindex 0 work? Only a special page in WikipediaZero seems to be > using it. Nope. tabindex=0 is used on elements that normally aren't focusable (like a <span>), to make them focusable when navigating through tabs, while respecting the normal tab order in the document. Only numbers greater than 0 work for specify a priority in the tab order (tabindex 0 is the default for focusable elements). What it could be done, is to use the same tabindex in all elements where the tab order matches the order where they're present in the HTML, like the edit form and such. But anyway, it requires changing the tabindex in a lot of PHP files. -- You are receiving this mail because: You are the assignee for the bug. You are on the CC list for the bug. _______________________________________________ Wikibugs-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikibugs-l
