()
| 10 | exports.implementation = class InnerHTMLImpl { |
| 11 | // https://w3c.github.io/DOM-Parsing/#dom-innerhtml-innerhtml |
| 12 | get innerHTML() { |
| 13 | return fragmentSerialization(this, { |
| 14 | outer: false, |
| 15 | requireWellFormed: true, |
| 16 | globalObject: this._globalObject |
| 17 | }); |
| 18 | } |
| 19 | set innerHTML(markup) { |
| 20 | const contextElement = isShadowRoot(this) ? this.host : this; |
| 21 | const fragment = parseFragment(markup, contextElement); |
nothing calls this directly
no test coverage detected