HTMLTemplateElement.idl 261 B

12345678910
  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. readonly attribute DocumentFragment content;
  7. };