Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <script src="resources/text-based-repaint.js"></script> | |
| 3 <script> | |
| 4 function repaintTest() | |
| 5 { | |
| 6 document.getElementById('button').click(); | |
| 7 document.getElementById('checkbox').click(); | |
| 8 } | |
| 9 window.onload = runRepaintTest; | |
| 10 </script> | |
| 11 | |
| 12 <button id="button">Button</button> | |
| 13 <input id="checkbox" type="checkbox"> | |
| OLD | NEW |