4 <script src=
"../../resources/js-test.js"></script>
7 <input type=
"checkbox" id=
"ch" onchange=
"handleChange()">
8 <input type=
"checkbox" id=
"ch1" value=
"" onchange=
"handleChange()">
10 description("This is to test onchange of checkboxes");
12 function handleChange() {
13 testPassed('onChange event fired for the checkbox.');
16 document
.getElementById('ch').click();
17 document
.getElementById('ch1').click();