(footerRow: Element)
| 3444 | } |
| 3445 | |
| 3446 | function getFooterCells(footerRow: Element): HTMLElement[] { |
| 3447 | let cells = getElements(footerRow, 'cdk-footer-cell'); |
| 3448 | if (!cells.length) { |
| 3449 | cells = getElements(footerRow, 'td.cdk-footer-cell'); |
| 3450 | } |
| 3451 | |
| 3452 | return cells; |
| 3453 | } |
| 3454 | |
| 3455 | function getActualTableContent(tableElement: Element): string[][] { |
| 3456 | let actualTableContent: Element[][] = []; |
no test coverage detected