MCPcopy Index your code
hub / github.com/Macuyiko/minecraft-python / isTableBodyScopeMarker

Function isTableBodyScopeMarker

ServerEditorWeb/ace/worker-html.js:1370–1375  ·  view source on GitHub ↗
(node)

Source from the content-addressed store, hash-verified

1368}
1369
1370function 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
1377function isTableRowScopeMarker(node) {
1378 return (node.namespaceURI === "http://www.w3.org/1999/xhtml" && node.localName === 'tr')

Callers 1

worker-html.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected