2022-02-15 22:40:51 +03:30
|
|
|
#import <DOM/DocumentFragment.idl>
|
|
|
|
#import <HTML/HTMLElement.idl>
|
|
|
|
|
2022-10-07 16:45:09 -06:00
|
|
|
// https://html.spec.whatwg.org/multipage/scripting.html#htmltemplateelement
|
|
|
|
[Exposed=Window]
|
2020-08-01 03:07:00 +01:00
|
|
|
interface HTMLTemplateElement : HTMLElement {
|
|
|
|
|
2023-03-23 03:48:52 -04:00
|
|
|
[HTMLConstructor] constructor();
|
|
|
|
|
2020-08-19 22:30:33 +01:00
|
|
|
readonly attribute DocumentFragment content;
|
2024-06-25 10:50:04 +02:00
|
|
|
[Reflect=shadowrootmode, Enumerated=ShadowRootMode, CEReactions] attribute DOMString shadowRootMode;
|
|
|
|
[Reflect=shadowrootdelegatesfocus, CEReactions] attribute boolean shadowRootDelegatesFocus;
|
|
|
|
[Reflect=shadowrootclonable, CEReactions] attribute boolean shadowRootClonable;
|
|
|
|
[Reflect=shadowrootserializable, CEReactions] attribute boolean shadowRootSerializable;
|
2020-12-09 21:26:42 +00:00
|
|
|
};
|