(mapMeta)
| 511 | let root = this.src ? this.shadowRoot : this, |
| 512 | pseudo = root instanceof ShadowRoot ? ':host' : ':scope'; |
| 513 | const _addMetaElement = (mapMeta) => { |
| 514 | this.whenReady().then(() => { |
| 515 | this._layer._calculateBounds(); |
| 516 | this._validateDisabled(); |
| 517 | }); |
| 518 | }; |
| 519 | for (let i = 0; i < elementsGroup.length; ++i) { |
| 520 | let element = elementsGroup[i]; |
| 521 | switch (element.nodeName) { |
nothing calls this directly
no test coverage detected