Sha256: 9c96253bccb1d8e5632e79c1022b1f63b49737957277e2b3f85776a767fbbb79
Contents?: true
Size: 331 Bytes
Versions: 375
Compression:
Stored size: 331 Bytes
Contents
/* global table */ /** * Determine if a `HTMLTableCellElement` is a row header * @method isRowHeader * @memberof axe.commons.table * @instance * @param {HTMLTableCellElement} cell The table cell to test * @return {Boolean} */ table.isRowHeader = function(cell) { return ['row', 'auto'].includes(table.getScope(cell)); };
Version data entries
375 entries across 375 versions & 1 rubygems