Sha256: 52b885e019d3fa9240c2cefac42d405374c4abea0325163eb7a5de66d7b3b39c
Contents?: true
Size: 360 Bytes
Versions: 271
Compression:
Stored size: 360 Bytes
Contents
/* global forms */ /** * Determines if an element is an aria combobox element * @method isAriaCombobox * @memberof axe.commons.forms * @param {Element} node Node to determine if aria combobox * @returns {Bool} */ forms.isAriaCombobox = function(node) { const role = axe.commons.aria.getRole(node, { noImplicit: true }); return role === 'combobox'; };
Version data entries
271 entries across 271 versions & 1 rubygems