2024-11-23 23:06:06 +01:00
|
|
|
// https://html.spec.whatwg.org/multipage/popover.html#attr-popovertargetaction
|
|
|
|
|
[MissingValueDefault=toggle, InvalidValueDefault=toggle]
|
|
|
|
|
enum PopoverTargetActionAttribute {
|
|
|
|
|
"toggle",
|
|
|
|
|
"show",
|
|
|
|
|
"hide"
|
|
|
|
|
};
|
|
|
|
|
|
2025-11-27 13:52:14 +00:00
|
|
|
// https://html.spec.whatwg.org/multipage/popover.html#popovertargetattributes
|
|
|
|
|
interface mixin PopoverTargetAttributes {
|
2024-11-23 23:06:06 +01:00
|
|
|
[Reflect=popovertarget, CEReactions] attribute Element? popoverTargetElement;
|
|
|
|
|
[Reflect=popovertargetaction, Enumerated=PopoverTargetActionAttribute, CEReactions] attribute DOMString popoverTargetAction;
|
|
|
|
|
};
|