UNPKG

399 BJavaScriptView Raw
1const HTMLElement = require('./HTMLElement');
2
3// interface HTMLHtmlElement // https://html.spec.whatwg.org/multipage/semantics.html#htmlhtmlelement
4module.exports = class HTMLHtmlElement extends HTMLElement {
5
6 get innerHTML() {
7 const document = this.ownerDocument;
8 return document.head.outerHTML + document.body.outerHTML;
9 }
10
11 set innerHTML(html) {
12 super.innerHTML = html;
13 }
14
15};