| 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 input became 'indeterminate' state or not-'indeterminate' state, distrib
ution should happen.</p> | 8 <p>When input became 'indeterminate' state or not-'indeterminate' state, distrib
ution should happen.</p> |
| 10 | 9 |
| 11 <div id="host"> | 10 <div id="host"> |
| 12 <input id="input1" type="checkbox"> | 11 <input id="input1" type="checkbox"> |
| 13 <span>separator 1</span> | 12 <span>separator 1</span> |
| 14 <input id="input2" type="checkbox"> | 13 <input id="input2" type="checkbox"> |
| (...skipping 26 matching lines...) Expand all Loading... |
| 41 | 40 |
| 42 input2.type = 'text'; | 41 input2.type = 'text'; |
| 43 input5.type = 'checkbox'; | 42 input5.type = 'checkbox'; |
| 44 testRunner.notifyDone(); | 43 testRunner.notifyDone(); |
| 45 }, 0); | 44 }, 0); |
| 46 | 45 |
| 47 </script> | 46 </script> |
| 48 </body> | 47 </body> |
| 49 </html> | 48 </html> |
| 50 | 49 |
| OLD | NEW |