| 1368 | } |
| 1369 | |
| 1370 | function isTableBodyScopeMarker(node) { |
| 1371 | return (node.namespaceURI === "http://www.w3.org/1999/xhtml" && node.localName === 'tbody') |
| 1372 | || (node.namespaceURI === "http://www.w3.org/1999/xhtml" && node.localName === 'tfoot') |
| 1373 | || (node.namespaceURI === "http://www.w3.org/1999/xhtml" && node.localName === 'thead') |
| 1374 | || (node.namespaceURI === "http://www.w3.org/1999/xhtml" && node.localName === 'html'); |
| 1375 | } |
| 1376 | |
| 1377 | function isTableRowScopeMarker(node) { |
| 1378 | return (node.namespaceURI === "http://www.w3.org/1999/xhtml" && node.localName === 'tr') |