axe-core
Version:
Accessibility engine for automated Web UI testing
23 lines (19 loc) • 524 B
JavaScript
/* global table, axe */
/**
* Determine if a `HTMLTableCellElement` is a header
* @method isHeader
* @memberof axe.commons.table
* @instance
* @param {HTMLTableCellElement} cell The table cell to test
* @return {Boolean}
*/
table.isHeader = function (cell) {
if (table.isColumnHeader(cell) || table.isRowHeader(cell)) {
return true;
}
if (cell.getAttribute('id')) {
const id = axe.utils.escapeSelector(cell.getAttribute('id'));
return !!document.querySelector(`[headers~="${id}"]`);
}
return false;
};