Created by: maedi
Bootstrap Tabs almost conforms to the ARIA spec for tabs but not quite: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Roles/Tab_Role#Description
To match the spec the following changes have been made:
- Change the
tabfrom usingaria-expandedtoaria-selected - Connect to
tabpanels via thetab'saria-controlsvalue - Change the
tabpanelfrom using an.activecss class toaria-expanded(in addition)
The HTML will need to ensure that their tab's aria-controls and tabpanel's id match.