(container)
| 180 | this._linkEl.shadowRoot.innerHTML = ''; |
| 181 | } |
| 182 | const removeCSS = (container) => { |
| 183 | const styleElements = container.querySelectorAll( |
| 184 | 'link[rel=stylesheet],style' |
| 185 | ); |
| 186 | styleElements.forEach((element) => element.remove()); |
| 187 | }; |
| 188 | removeCSS(this._container); |
| 189 | |
| 190 | //Leave the layers cleared if the layer is not visible |
no test coverage detected