1
0
mirror of https://github.com/SerenityOS/serenity synced 2024-07-09 08:20:44 +00:00

LibWeb: Add ShadowRoot.clonable and ShadowRoot.serializable

(cherry picked from commit 8e68215d333963eeb63cccde171dba6ea77651d7)
This commit is contained in:
Andreas Kling 2024-06-25 14:12:19 +02:00 committed by Nico Weber
parent 88d9dc148c
commit 020764b204

View File

@ -8,6 +8,8 @@ interface ShadowRoot : DocumentFragment {
readonly attribute ShadowRootMode mode;
readonly attribute boolean delegatesFocus;
readonly attribute SlotAssignmentMode slotAssignment;
readonly attribute boolean clonable;
readonly attribute boolean serializable;
readonly attribute Element host;
attribute EventHandler onslotchange;
};