2022-10-07 19:45:09 -03:00
|
|
|
// https://html.spec.whatwg.org/multipage/scripting.html#htmltemplateelement
|
|
|
|
|
[Exposed=Window]
|
2020-07-31 23:07:00 -03:00
|
|
|
interface HTMLTemplateElement : HTMLElement {
|
|
|
|
|
|
2023-03-23 04:48:52 -03:00
|
|
|
[HTMLConstructor] constructor();
|
|
|
|
|
|
2025-11-27 06:54:47 -03:00
|
|
|
[ImplementedAs=content_for_bindings] readonly attribute DocumentFragment content;
|
2024-06-25 05:50:04 -03:00
|
|
|
[Reflect=shadowrootmode, Enumerated=ShadowRootMode, CEReactions] attribute DOMString shadowRootMode;
|
2026-05-16 04:05:40 -03:00
|
|
|
[Reflect=shadowrootslotassignment, Enumerated=SlotAssignmentMode, CEReactions] attribute DOMString shadowRootSlotAssignment;
|
2024-06-25 05:50:04 -03:00
|
|
|
[Reflect=shadowrootdelegatesfocus, CEReactions] attribute boolean shadowRootDelegatesFocus;
|
|
|
|
|
[Reflect=shadowrootclonable, CEReactions] attribute boolean shadowRootClonable;
|
|
|
|
|
[Reflect=shadowrootserializable, CEReactions] attribute boolean shadowRootSerializable;
|
2026-02-27 14:05:47 -03:00
|
|
|
[Reflect=shadowrootcustomelementregistry, CEReactions] attribute DOMString shadowRootCustomElementRegistry;
|
2020-12-09 18:26:42 -03:00
|
|
|
};
|