LibWeb: Add HTMLTemplateElement IDL attrs for declarative shadow DOM

(cherry picked from commit a0e111220913ec1bf8d51dde37174120781b0a5f)
This commit is contained in:
Andreas Kling
2024-06-25 10:50:04 +02:00
committed by Nico Weber
parent 020764b204
commit 6217ebe33c

View File

@@ -8,5 +8,8 @@ interface HTMLTemplateElement : HTMLElement {
[HTMLConstructor] constructor();
readonly attribute DocumentFragment content;
[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;
};