Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / repaint / table-two-pass-layout-overpaint.html
blobd049351b0ccc1f3f6834388f1363aebbc38d240f
1 <html>
2 <head>
3 <style>
4 table { background-color: lightblue; height: 100px; }
5 td { width: 100px; height: 50px; }
6 div#target { height: 25px; background-color: lightgreen; }
7 </style>
8 <script src="resources/text-based-repaint.js"></script>
9 <script>
10 function repaintTest()
12 document.getElementById("target").style.width = "50px";
14 </script>
15 </head>
16 <body onload="runRepaintTest()">
17 <table>
18 <tr>
19 <td>
20 <div id="target"></div>
21 </td>
22 </tr>
23 </table>
24 </body>
25 </html>