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