(tableElement: Element)
| 3418 | } |
| 3419 | |
| 3420 | function getRows(tableElement: Element): HTMLElement[] { |
| 3421 | return getElements(tableElement, '.cdk-row'); |
| 3422 | } |
| 3423 | |
| 3424 | function getCells(row: Element): HTMLElement[] { |
| 3425 | if (!row) { |
no test coverage detected