click-label-with-display-none-checkbox.html 406 B

123456789101112131415161718192021
  1. <!DOCTYPE html>
  2. <style>
  3. body {
  4. margin: 0;
  5. }
  6. input {
  7. display: none;
  8. }
  9. </style>
  10. <label id="lbl">Label<input id="checkbox" type="checkbox"/></label>
  11. <script src="../include.js"></script>
  12. <script>
  13. asyncTest((done) => {
  14. checkbox.addEventListener("change", () => {
  15. println("Checkbox changed");
  16. done();
  17. });
  18. internals.click(5, 5);
  19. });
  20. </script>