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

Version Path
govuk_publishing_components-30.4.1 node_modules/axe-core/lib/commons/table/get-all-cells.js
govuk_publishing_components-30.4.0 node_modules/axe-core/lib/commons/table/get-all-cells.js
govuk_publishing_components-30.3.0 node_modules/axe-core/lib/commons/table/get-all-cells.js
govuk_publishing_components-30.2.1 node_modules/axe-core/lib/commons/table/get-all-cells.js
govuk_publishing_components-30.2.0 node_modules/axe-core/lib/commons/table/get-all-cells.js
govuk_publishing_components-30.1.0 node_modules/axe-core/lib/commons/table/get-all-cells.js
govuk_publishing_components-30.0.0 node_modules/axe-core/lib/commons/table/get-all-cells.js
govuk_publishing_components-29.15.3 node_modules/axe-core/lib/commons/table/get-all-cells.js
govuk_publishing_components-29.15.2 node_modules/axe-core/lib/commons/table/get-all-cells.js
govuk_publishing_components-29.15.1 node_modules/axe-core/lib/commons/table/get-all-cells.js
govuk_publishing_components-29.15.0 node_modules/axe-core/lib/commons/table/get-all-cells.js
govuk_publishing_components-29.14.0 node_modules/axe-core/lib/commons/table/get-all-cells.js
govuk_publishing_components-29.13.0 node_modules/axe-core/lib/commons/table/get-all-cells.js
govuk_publishing_components-29.12.1 node_modules/axe-core/lib/commons/table/get-all-cells.js
govuk_publishing_components-29.12.0 node_modules/axe-core/lib/commons/table/get-all-cells.js
govuk_publishing_components-29.11.0 node_modules/axe-core/lib/commons/table/get-all-cells.js
govuk_publishing_components-29.10.0 node_modules/axe-core/lib/commons/table/get-all-cells.js
govuk_publishing_components-29.9.0 node_modules/axe-core/lib/commons/table/get-all-cells.js
govuk_publishing_components-29.8.0 node_modules/axe-core/lib/commons/table/get-all-cells.js
govuk_publishing_components-29.7.0 node_modules/axe-core/lib/commons/table/get-all-cells.js