LibWeb/HTML: Rename popover "invoker"

Lots of renames, no behaviour differences. (Apart from the rename of the
IDL type, which does of course affect JS.)

Corresponds to:
16cb7808da
This commit is contained in:
Sam Atkins
2025-11-27 13:52:14 +00:00
parent 82dfa69e4e
commit 85478c9215
Notes: github-actions[bot] 2025-11-27 16:45:55 +00:00
16 changed files with 107 additions and 103 deletions

View File

@@ -0,0 +1,13 @@
// 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;
};