You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Het volgende is in de huidige situatie niet fout, maar kan wel verbeterd worden: Op pagina components/tabs.html staan tabbladen. Op het actieve tabblad staat nu `aria-current="page"`. In veel gevallen zal dit niet kloppen, omdat dit waarschijnlijk meestal niet voor pagina's gebruikt zal worden. Het advies is daarom om `aria-current="true"` te gebruiken.
The Tabs example uses aria-current="page". This would only be correct if the tabs function as a nav, simply linking to other pages.
If the tabs are interactive and controls the content of another container on the page it should use aria-current="true" instead and should most likely further implement some of the ARIA APG Tabs Pattern.
The text was updated successfully, but these errors were encountered:
From independent accessibility report, SC 4.1.2:
The Tabs example uses
aria-current="page"
. This would only be correct if the tabs function as a nav, simply linking to other pages.If the tabs are interactive and controls the content of another container on the page it should use
aria-current="true"
instead and should most likely further implement some of the ARIA APG Tabs Pattern.The text was updated successfully, but these errors were encountered: