UNPKG

axe-core

Version:

Accessibility engine for automated Web UI testing

12 lines (10 loc) 246 B
if ( node.nodeName.toLowerCase() !== 'input' || node.hasAttribute('type') === false ) { return true; } var type = node.getAttribute('type').toLowerCase(); return ( ['hidden', 'image', 'button', 'submit', 'reset'].includes(type) === false );