ladybird/Tests/LibWeb/Text/input/HTML/click-label-with-display-none-checkbox.html

22 lines
406 B
HTML
Raw Normal View History

<!DOCTYPE html>
<style>
body {
margin: 0;
}
input {
display: none;
}
</style>
<label id="lbl">Label<input id="checkbox" type="checkbox"/></label>
<script src="../include.js"></script>
<script>
asyncTest((done) => {
checkbox.addEventListener("change", () => {
println("Checkbox changed");
done();
});
internals.click(5, 5);
});
</script>