(row: Element)
| 1085 | } |
| 1086 | |
| 1087 | function getCells(row: Element): Element[] { |
| 1088 | if (!row) { |
| 1089 | return []; |
| 1090 | } |
| 1091 | |
| 1092 | return getElements(row, 'td'); |
| 1093 | } |
| 1094 | |
| 1095 | function getHeaderCells(headerRow: Element): Element[] { |
| 1096 | return getElements(headerRow, 'th'); |
no test coverage detected