closeCell method
void
closeCell()
Implementation
void closeCell() {
if (tree.elementInScope('td', variant: 'table')) {
endTagTableCell(EndTagToken('td'));
} else if (tree.elementInScope('th', variant: 'table')) {
endTagTableCell(EndTagToken('th'));
}
}