MCPcopy Create free account
hub / github.com/angular/components / getFooterCells

Function getFooterCells

src/cdk/table/table.spec.ts:3446–3453  ·  view source on GitHub ↗
(footerRow: Element)

Source from the content-addressed store, hash-verified

3444}
3445
3446function 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
3455function getActualTableContent(tableElement: Element): string[][] {
3456 let actualTableContent: Element[][] = [];

Callers 3

table.spec.tsFile · 0.70
assertStickyOffsetsFunction · 0.70
getActualTableContentFunction · 0.70

Calls 1

getElementsFunction · 0.70

Tested by

no test coverage detected