UNPKG

379 BJavaScriptView Raw
1const HTMLElement = require('./HTMLElement');
2
3// interface HTMLTemplateElement // https://html.spec.whatwg.org/multipage/scripting.html#htmltemplateelement
4module.exports = class HTMLTemplateElement extends HTMLElement {
5
6 get content() {
7 const fragment = this.ownerDocument.createDocumentFragment();
8 fragment.childNodes = this.childNodes;
9 return fragment;
10 }
11
12};