(/** @type {HtmlElement} */ el)
| 5219 | }; |
| 5220 | |
| 5221 | const mathmlTextIntegrationPoint = (/** @type {HtmlElement} */ el) => |
| 5222 | el.namespace === NS_MATHML && MATHML_TEXT_INTEGRATION.has(el.tagName); |
| 5223 | const htmlIntegrationPoint = (/** @type {HtmlElement} */ el) => { |
| 5224 | if (el.namespace === NS_MATHML && el.tagName === "annotation-xml") { |
| 5225 | const enc = findAttr(el.attributes, "encoding"); |
no test coverage detected