Files
ladybird/Tests/LibWeb/Crash/HTML/label-click-dirty-layout.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>