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