mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-05 06:32:30 +02:00
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:
Notes:
github-actions[bot]
2025-11-27 16:45:55 +00:00
Author: https://github.com/AtkinsSJ Commit: https://github.com/LadybirdBrowser/ladybird/commit/85478c92150 Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/6957
13
Libraries/LibWeb/HTML/PopoverTargetAttributes.idl
Normal file
13
Libraries/LibWeb/HTML/PopoverTargetAttributes.idl
Normal 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;
|
||||
};
|
||||
Reference in New Issue
Block a user