Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / paint / invalidation / spv2 / subtree-root-clip-3.html
blob0075187eb18573a2579395b868e51fe7ad792741
1 <!-- Based on fast/repaint/subtree-root-clip-3.html -->
2 <html>
3 <head>
4 <script src="resources/paint-invalidation-test.js"></script>
5 <script>
6 window.expectedPaintInvalidationObjects = [
7 "LayoutBlockFlow DIV",
8 "LayoutBlockFlow DIV id='target'",
9 ];
10 function paintInvalidationTest()
12 document.getElementById("target").style.width = "100px";
14 </script>
15 </head>
16 <body onload="runPaintInvalidationTest()">
17 <table>
18 <tr>
19 <td style="height: 200px;"></td>
20 <td>
21 <div style="height: 100px; width: 100px; overflow: hidden; background-color: red;">
22 <div id="target" style="height: 100px; width: 0; background-color: green;"></div>
23 </div>
24 </td>
25 </tr>
26 </table>
27 </body>
28 </html>