UNPKG

axe-core

Version:

Accessibility engine for automated Web UI testing

7 lines (6 loc) 240 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;