| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <script src="../../fast/repaint/resources/text-based-repaint.js"></script> | 2 <script src="../../fast/repaint/resources/repaint.js"></script> |
| 3 <script> | 3 <script> |
| 4 function repaintTest() { | 4 function repaintTest() { |
| 5 document.getElementById('table').style.height = '80%'; | 5 document.getElementById('table').style.height = '80%'; |
| 6 } | 6 } |
| 7 onload = runRepaintTest; | 7 onload = runRepaintTest; |
| 8 </script> | 8 </script> |
| 9 <style> | 9 <style> |
| 10 body { | 10 body { |
| 11 margin: 0; | 11 margin: 0; |
| 12 } | 12 } |
| (...skipping 14 matching lines...) Expand all Loading... |
| 27 The result repaint rects should cover the percent-sized table cells. | 27 The result repaint rects should cover the percent-sized table cells. |
| 28 </div> | 28 </div> |
| 29 <table id="table"> | 29 <table id="table"> |
| 30 <tr> | 30 <tr> |
| 31 <td>ROW1</td> | 31 <td>ROW1</td> |
| 32 </tr> | 32 </tr> |
| 33 <tr> | 33 <tr> |
| 34 <td>ROW2</td> | 34 <td>ROW2</td> |
| 35 </tr> | 35 </tr> |
| 36 </table> | 36 </table> |
| OLD | NEW |