OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <script src="../../fast/repaint/resources/text-based-repaint.js"></script> | |
3 <script> | |
4 function repaintTest() { | |
5 document.getElementById('table').style.height = '80%'; | |
6 } | |
7 onload = runRepaintTest; | |
8 </script> | |
9 <style> | 2 <style> |
10 body { | 3 body { |
11 margin: 0; | 4 margin: 0; |
12 } | 5 } |
13 table { | 6 table { |
14 position: absolute; | 7 position: absolute; |
15 height: 100px; | 8 height: 80%; |
16 } | 9 } |
17 td { | 10 td { |
18 vertical-align: middle; | 11 vertical-align: middle; |
19 width: 100px; | 12 width: 100px; |
20 } | 13 } |
21 </style> | 14 </style> |
22 <div style="height: 50px"> | 15 <div style="height: 50px"> |
23 Tests repaint of middle-vertical-aligned table cells when table changes size. | 16 Tests repaint of middle-vertical-aligned table cells when table changes size. |
24 The result repaint rects should cover the middle-vertical-aligned table cells. | 17 The result repaint rects should cover the middle-vertical-aligned table cells. |
25 </div> | 18 </div> |
26 <table id="table"> | 19 <table id="table"> |
27 <tr> | 20 <tr> |
28 <td>MIDDLE</td> | 21 <td>MIDDLE</td> |
29 </tr> | 22 </tr> |
30 </table> | 23 </table> |
OLD | NEW |