mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-24 18:02:20 +00:00
12 lines
379 B
HTML
12 lines
379 B
HTML
<button popovertarget="pop" id="button"></button>
|
|
<div popover id="pop">
|
|
<span>I'm a node</span>
|
|
</div>
|
|
|
|
<script>
|
|
document.addEventListener("DOMContentLoaded", () => {
|
|
let button = document.getElementById('button');
|
|
const rect = button.getBoundingClientRect();
|
|
internals.click(rect.x + rect.width / 2, rect.y + rect.height / 2);
|
|
});
|
|
</script>
|