Sha256: 8a21787fcdc4473c403143439b5643b2879d679c897d42457c527aa2d065e248
Contents?: true
Size: 749 Bytes
Versions: 104
Compression:
Stored size: 749 Bytes
Contents
/* global dom */ /** * Get all elements (including given node) that are part if the tab order * @method getTabbableElements * @memberof axe.commons.dom * @instance * @param {Object} virtualNode The virtualNode to assess * @return {Boolean} */ dom.getTabbableElements = function getTabbableElements(virtualNode) { const nodeAndDescendents = axe.utils.querySelectorAll(virtualNode, '*'); const tabbableElements = nodeAndDescendents.filter(vNode => { const isFocusable = vNode.isFocusable; let tabIndex = vNode.actualNode.getAttribute('tabindex'); tabIndex = tabIndex && !isNaN(parseInt(tabIndex, 10)) ? parseInt(tabIndex) : null; return tabIndex ? isFocusable && tabIndex >= 0 : isFocusable; }); return tabbableElements; };
Version data entries
104 entries across 104 versions & 1 rubygems