WAI-ARIA - selected/current menuitem/page, how to set the correct state in a menubar?
I'm doing some code clean up / validation in a web site, and have run into an issue. The site have a main menu (menubar) where the current page should be indicated. The menu structure as is: <nav role="navigation"> <ul role="menubar"> <li role="menuitem" aria-selected="true"> <a href="currentpage">Current page</a> </li> <li role="menuitem"> <a href="anotherpage">Another page</a> </li> </ul> </nav> According to the WAI-ARIA spec, the state aria-selected is not allowed on the role menuitem: http://www.w3.org/TR/wai-aria/states_and_properties#aria-selected . Neither can I find any state for