OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <script src="resources/polyfill.js"></script> | |
5 </head> | 4 </head> |
6 | 5 |
7 <body> | 6 <body> |
8 | 7 |
9 <p>When an input element became 'checked' or not-'checked', distribution should
happen.</p> | 8 <p>When an input element became 'checked' or not-'checked', distribution should
happen.</p> |
10 | 9 |
11 <p>Case 1: input[type=checkbox] becomes checked</p> | 10 <p>Case 1: input[type=checkbox] becomes checked</p> |
12 <div id="host1"> | 11 <div id="host1"> |
13 <input id="input1" type="checkbox"> | 12 <input id="input1" type="checkbox"> |
14 </div> | 13 </div> |
(...skipping 28 matching lines...) Expand all Loading... |
43 input2.checked = false; | 42 input2.checked = false; |
44 input3.checked = true; | 43 input3.checked = true; |
45 input4.checked = false; | 44 input4.checked = false; |
46 testRunner.notifyDone(); | 45 testRunner.notifyDone(); |
47 }, 0); | 46 }, 0); |
48 | 47 |
49 </script> | 48 </script> |
50 </body> | 49 </body> |
51 </html> | 50 </html> |
52 | 51 |
OLD | NEW |