-
Notifications
You must be signed in to change notification settings - Fork 320
Closed
Labels
addition/proposalNew features or enhancementsNew features or enhancementstopic: shadowRelates to shadow trees (as defined in DOM)Relates to shadow trees (as defined in DOM)
Description
What is the issue with the DOM Standard?
#892 did not add one, is it intentional somehow or just an accidental omission? The spec does have attributes for every other member.
interface ShadowRoot : DocumentFragment {
readonly attribute ShadowRootMode mode;
readonly attribute boolean delegatesFocus;
readonly attribute SlotAssignmentMode slotAssignment;
readonly attribute Element host;
attribute EventHandler onslotchange;
};
dictionary ShadowRootInit {
required ShadowRootMode mode;
boolean delegatesFocus = false;
SlotAssignmentMode slotAssignment = "named";
boolean clonable = false;
};Metadata
Metadata
Assignees
Labels
addition/proposalNew features or enhancementsNew features or enhancementstopic: shadowRelates to shadow trees (as defined in DOM)Relates to shadow trees (as defined in DOM)