(node)
| 1363 | } |
| 1364 | |
| 1365 | function isTableScopeMarker(node) { |
| 1366 | return (node.namespaceURI === "http://www.w3.org/1999/xhtml" && node.localName === 'table') |
| 1367 | || (node.namespaceURI === "http://www.w3.org/1999/xhtml" && node.localName === 'html'); |
| 1368 | } |
| 1369 | |
| 1370 | function isTableBodyScopeMarker(node) { |
| 1371 | return (node.namespaceURI === "http://www.w3.org/1999/xhtml" && node.localName === 'tbody') |