endTagTable method
Token?
endTagTable(
- EndTagToken token
Implementation
Token? endTagTable(EndTagToken token) {
final ignoreEndTag = ignoreEndTagTr();
endTagTr(EndTagToken('tr'));
// Reprocess the current tag if the tr end tag was not ignored
// XXX how are we sure it's always ignored in the innerHTML case?
return ignoreEndTag ? null : token;
}