(_init: ShadowRootInit)
| 508 | |
| 509 | // eslint-disable-next-line @typescript-eslint/no-unused-vars |
| 510 | public attachShadow(_init: ShadowRootInit): IRRElement { |
| 511 | const shadowRoot = this.ownerDocument.createElement('SHADOWROOT'); |
| 512 | this.shadowRoot = shadowRoot; |
| 513 | return shadowRoot; |
| 514 | } |
| 515 | |
| 516 | // eslint-disable-next-line @typescript-eslint/no-unused-vars |
| 517 | public dispatchEvent(_event: Event) { |
nothing calls this directly
no test coverage detected