1#import <DOM/DocumentFragment.idl>
2#import <HTML/HTMLElement.idl>
3
4// https://html.spec.whatwg.org/multipage/scripting.html#htmltemplateelement
5[Exposed=Window]
6interface HTMLTemplateElement : HTMLElement {
7
8 readonly attribute DocumentFragment content;
9
10};