mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-13 10:26:37 +02:00
9 lines
255 B
HTML
9 lines
255 B
HTML
<!DOCTYPE html>
|
|
<label id="label" for="input">Test</label>
|
|
<input id="input">
|
|
<script>
|
|
document.getElementById("input").offsetWidth;
|
|
document.body.appendChild(document.createElement("div"));
|
|
document.getElementById("label").click();
|
|
</script>
|