mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-17 14:05:35 +00:00
13 lines
379 B
HTML
13 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>
|