mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-05 17:16:04 +00:00
LibWeb: Implement popovertarget buttons
This commit is contained in:
parent
a1cf5271c2
commit
108f3a9aac
Notes:
github-actions[bot]
2025-01-30 22:49:42 +00:00
Author: https://github.com/Gingeh
Commit: 108f3a9aac
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/3285
Reviewed-by: https://github.com/ADKaster ✅
Reviewed-by: https://github.com/AtkinsSJ
14 changed files with 188 additions and 14 deletions
12
Tests/LibWeb/Text/input/popover-crashes.html
Normal file
12
Tests/LibWeb/Text/input/popover-crashes.html
Normal file
|
@ -0,0 +1,12 @@
|
|||
<!DOCTYPE html>
|
||||
<script src="include.js"></script>
|
||||
<div popover id="pop"></div>
|
||||
<script>
|
||||
test(() => {
|
||||
const pop = document.getElementById("pop");
|
||||
pop.showPopover();
|
||||
pop.hidePopover();
|
||||
pop.showPopover();
|
||||
println("Didn't crash when showing recently hidden popover");
|
||||
});
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue