()
| 6573 | } |
| 6574 | }; |
| 6575 | const clearStackToTableBodyContext = () => { |
| 6576 | while (open.length) { |
| 6577 | const c = cur(); |
| 6578 | if (c.namespace === NS_HTML && CLEAR_TABLE_BODY.has(c.tagName)) { |
| 6579 | break; |
| 6580 | } |
| 6581 | open.pop(); |
| 6582 | } |
| 6583 | }; |
| 6584 | const clearStackToTableRowContext = () => { |
| 6585 | while (open.length) { |
| 6586 | const c = cur(); |
no test coverage detected