
The intent is to use these to autogenerate prototype declarations for Window and WorkerGlobalScope classes. And the spec links are just nice to have :^)
10 lines
261 B
Text
10 lines
261 B
Text
#import <DOM/DocumentFragment.idl>
|
|
#import <HTML/HTMLElement.idl>
|
|
|
|
// https://html.spec.whatwg.org/multipage/scripting.html#htmltemplateelement
|
|
[Exposed=Window]
|
|
interface HTMLTemplateElement : HTMLElement {
|
|
|
|
readonly attribute DocumentFragment content;
|
|
|
|
};
|