Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <script src="../../fast/repaint/resources/text-based-repaint.js"></script> | |
| 3 <script> | |
| 4 function repaintTest() { | |
| 5 document.getElementById('row').style.height = '200px'; | |
| 6 } | |
| 7 runRepaintTest(); | |
| 8 </script> | |
| 9 <style> | |
| 10 body { | |
| 11 margin: 0; | |
| 12 } | |
| 13 tr { | |
| 14 height: 100px; | |
| 15 } | |
| 16 td { | |
| 17 width: 100px; | |
| 18 } | |
| 19 </style> | |
| 20 <!-- Tests repaint of table cells when the row changes size. | |
| 21 The result repaint rects should cover the changed table cells. --> | |
|
Julien - ping for review
2014/07/28 17:23:19
Same comment here. This is a blocker for me not to
Xianzhu
2014/07/28 20:55:27
Done.
| |
| 22 <table> | |
| 23 <tr id="row"> | |
| 24 <td>MIDDLE</td> | |
| 25 </tr> | |
| 26 </table> | |
| OLD | NEW |