Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / paint / invalidation / spv2 / table-two-pass-layout-overpaint.html
blob03cf4faffe0b553882e7ae1f28c0cc4a5eb5ea32
1 <!-- Based on fast/repaint/table-two-pass-layout-overpaint.html -->
2 <html>
3 <head>
4 <style>
5 table { background-color: lightblue; height: 100px; }
6 td { width: 100px; height: 50px; }
7 div#target { height: 25px; background-color: lightgreen; }
8 </style>
9 <script src="resources/paint-invalidation-test.js"></script>
10 <script>
11 window.expectedPaintInvalidationObjects = [
12 "LayoutBlockFlow DIV id='target'",
14 function paintInvalidationTest()
16 document.getElementById("target").style.width = "50px";
18 </script>
19 </head>
20 <body onload="runPaintInvalidationTest()">
21 <table>
22 <tr>
23 <td>
24 <div id="target"></div>
25 </td>
26 </tr>
27 </table>
28 </body>
29 </html>