Sha256: 9fece9ad21e475278b75a75860164712669aa420a00a4b399727f66d6d858d0e
Contents?: true
Size: 722 Bytes
Versions: 271
Compression:
Stored size: 722 Bytes
Contents
const tableUtils = axe.commons.table; const badCells = []; const cells = tableUtils.getAllCells(node); const tableGrid = tableUtils.toGrid(node); cells.forEach(cell => { // For each non-empty data cell that doesn't have an aria label if ( axe.commons.dom.hasContent(cell) && tableUtils.isDataCell(cell) && !axe.commons.aria.label(cell) ) { // Check if it has any headers const hasHeaders = tableUtils.getHeaders(cell, tableGrid).some(header => { return header !== null && !!axe.commons.dom.hasContent(header); }); // If no headers, put it on the naughty list if (!hasHeaders) { badCells.push(cell); } } }); if (badCells.length) { this.relatedNodes(badCells); return false; } return true;
Version data entries
271 entries across 271 versions & 1 rubygems