<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> <style type="text/css"> p, label { font-family: sans-serif; } </style> <title>#62</title> <script type="application/javascript" src="../lib/fastclick.js"></script> <script type="application/javascript"> window.addEventListener('load', function() { new FastClick(document.body); }, false); </script> </head> <body> <p>Tapping a disabled checkbox should not change its value.</p> <input type="checkbox" id="cb" disabled> <label for="cb">Label for a disabled checkbox</label> </body> </html>