(tag)
| 4322 | }; |
| 4323 | |
| 4324 | function getTagNamespace (tag) { |
| 4325 | if (isSVG(tag)) { |
| 4326 | return 'svg' |
| 4327 | } |
| 4328 | // basic support for MathML |
| 4329 | // note it doesn't support other MathML elements being component roots |
| 4330 | if (tag === 'math') { |
| 4331 | return 'math' |
| 4332 | } |
| 4333 | } |
| 4334 | |
| 4335 | var unknownElementCache = Object.create(null); |
| 4336 | function isUnknownElement (tag) { |
nothing calls this directly
no outgoing calls
no test coverage detected