(headerRow: Element)
| 3435 | } |
| 3436 | |
| 3437 | function getHeaderCells(headerRow: Element): HTMLElement[] { |
| 3438 | let cells = getElements(headerRow, 'cdk-header-cell'); |
| 3439 | if (!cells.length) { |
| 3440 | cells = getElements(headerRow, 'th.cdk-header-cell'); |
| 3441 | } |
| 3442 | |
| 3443 | return cells; |
| 3444 | } |
| 3445 | |
| 3446 | function getFooterCells(footerRow: Element): HTMLElement[] { |
| 3447 | let cells = getElements(footerRow, 'cdk-footer-cell'); |
no test coverage detected