Sha256: bbeebe85c52d710b008199e1a26336f50c2c2a1e2cc86f04e0692ff325acfd66
Contents?: true
Size: 355 Bytes
Versions: 375
Compression:
Stored size: 355 Bytes
Contents
/* global table */ /** * Determine if a `HTMLTableCellElement` is a column header * @method isColumnHeader * @memberof axe.commons.table * @instance * @param {HTMLTableCellElement} element The table cell to test * @return {Boolean} */ table.isColumnHeader = function(element) { return ['col', 'auto'].indexOf(table.getScope(element)) !== -1; };
Version data entries
375 entries across 375 versions & 1 rubygems