Open
Description
When opening a site with a checkbox that has a corresponding label tag, clicking on the label (not the checkbox) checks and instantly unchecks the checkbox.
Expected behavior: when clicking on the label, the checkbox should only switch state once.
Minimal HTML to reproduce (both don't work):
<html>
<body>
<input id="check" type="checkbox">
<label for="check">Click me</label>
<label>
<input type="checkbox">
Click me too
</label>
</body>
</html>
Activity