HTMLTemplateElement.idl 299 B

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