github / accessibilityjs
- четверг, 19 октября 2017 г. в 03:13:39
Client side accessibility error scanner.
Client side accessibility error scanner.
npm install accessibilityjs --save
import {scanForProblems} from 'accessibilityjs'
function logError(error) {
error.element.classList.add('accessibility-error')
error.element.addEventListener('click', function () {
alert(`${error.name}\n\n${error.message}`)
}, {once: true})
}
document.addEventListener('ready', function() {
scanForProblems(document, logError)
})List of errors:
ImageWithoutAltAttributeErrorElementWithoutLabelErrorLinkWithoutLabelOrRoleErrorLabelMissingControlErrorInputMissingLabelErrorButtonWithoutLabelErrorARIAAttributeMissingErrorIn GitHub we use this script to scan for inaccessible elements in development and production staff mode. We style the elements with red borders in the logError function passed in, and add a click handler explaining the reasons.
Internet Explorer and Edge require a polyfill for closest.
npm installnpm testnpm run example