UNPKG

axe-core

Version:

Accessibility engine for automated Web UI testing

23 lines (21 loc) 632 B
/* global table */ /** * Determine if a `HTMLTableCellElement` is a data cell * @method isDataCell * @memberof axe.commons.table * @instance * @param {HTMLTableCellElement} node The table cell to test * @return {Boolean} */ table.isDataCell = function (cell) { // @see http://www.whatwg.org/specs/web-apps/current-work/multipage/tables.html#empty-cell if (!cell.children.length && !cell.textContent.trim()) { return false; } const role = cell.getAttribute('role'); if (axe.commons.aria.isValidRole(role)) { return ['cell', 'gridcell'].includes(role); } else { return cell.nodeName.toUpperCase() === 'TD'; } };