LibWeb: Add ShadowRoot.clonable and ShadowRoot.serializable

This commit is contained in:
Andreas Kling 2024-06-25 14:12:19 +02:00 committed by Andreas Kling
commit 8e68215d33
Notes: sideshowbarker 2024-07-18 00:54:03 +09:00

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;
};