(row: Element)
| 3422 | } |
| 3423 | |
| 3424 | function getCells(row: Element): HTMLElement[] { |
| 3425 | if (!row) { |
| 3426 | return []; |
| 3427 | } |
| 3428 | |
| 3429 | let cells = getElements(row, 'cdk-cell'); |
| 3430 | if (!cells.length) { |
| 3431 | cells = getElements(row, 'td.cdk-cell'); |
| 3432 | } |
| 3433 | |
| 3434 | return cells; |
| 3435 | } |
| 3436 | |
| 3437 | function getHeaderCells(headerRow: Element): HTMLElement[] { |
| 3438 | let cells = getElements(headerRow, 'cdk-header-cell'); |
no test coverage detected