Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / resize-table-row-repaint.html
blob432f640f0ccae8bdcb62c006d37e0a040d920f56
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';
7 onload = runRepaintTest;
8 </script>
9 <style>
10 body {
11 margin: 0;
13 tr {
14 height: 100px;
16 td {
17 width: 100px;
19 </style>
20 <div style="height: 100px">
21 Tests repaint of table cells when the row changes size.
22 The result repaint rects should cover the changed table cells.
23 </div>
24 <table>
25 <tr id="row">
26 <td>MIDDLE</td>
27 </tr>
28 </table>