(node)
| 1380 | } |
| 1381 | |
| 1382 | function isButtonScopeMarker(node) { |
| 1383 | return isScopeMarker(node) |
| 1384 | || (node.namespaceURI === "http://www.w3.org/1999/xhtml" && node.localName === 'button'); |
| 1385 | } |
| 1386 | |
| 1387 | function isSelectScopeMarker(node) { |
| 1388 | return !(node.namespaceURI === "http://www.w3.org/1999/xhtml" && node.localName === 'optgroup') |
nothing calls this directly
no test coverage detected