Sha256: c1d9c9a706aa647088bb28250f9052829716fd58b05130b27c9fae27799a845e
Contents?: true
Size: 677 Bytes
Versions: 375
Compression:
Stored size: 677 Bytes
Contents
/* global table */ /** * Returns all cells contained in given HTMLTableElement * @method getAllCells * @memberof axe.commons.table * @instance * @param {HTMLTableElement} tableElm Table Element to get cells from * @return {Array<HTMLTableCellElement>} */ table.getAllCells = function(tableElm) { var rowIndex, cellIndex, rowLength, cellLength; var cells = []; for ( rowIndex = 0, rowLength = tableElm.rows.length; rowIndex < rowLength; rowIndex++ ) { for ( cellIndex = 0, cellLength = tableElm.rows[rowIndex].cells.length; cellIndex < cellLength; cellIndex++ ) { cells.push(tableElm.rows[rowIndex].cells[cellIndex]); } } return cells; };
Version data entries
375 entries across 375 versions & 1 rubygems