mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-07 21:59:54 +00:00
Lots of renames, no behaviour differences. (Apart from the rename of the
IDL type, which does of course affect JS.)
Corresponds to:
16cb7808da
13 lines
549 B
Text
13 lines
549 B
Text
// https://html.spec.whatwg.org/multipage/popover.html#attr-popovertargetaction
|
|
[MissingValueDefault=toggle, InvalidValueDefault=toggle]
|
|
enum PopoverTargetActionAttribute {
|
|
"toggle",
|
|
"show",
|
|
"hide"
|
|
};
|
|
|
|
// https://html.spec.whatwg.org/multipage/popover.html#popovertargetattributes
|
|
interface mixin PopoverTargetAttributes {
|
|
[Reflect=popovertarget, CEReactions] attribute Element? popoverTargetElement;
|
|
[Reflect=popovertargetaction, Enumerated=PopoverTargetActionAttribute, CEReactions] attribute DOMString popoverTargetAction;
|
|
};
|