Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / paint / invalidation / spv2 / table-section-overflow.html
blobea0cdf755f71898626a8c67e8fc0002235542af0
1 <!-- Based on fast/repaint/table-section-overflow.html -->
2 <html>
3 <head>
4 <title>Test for http://bugs.webkit.org/show_bug.cgi?id=12079</title>
5 <script src="resources/paint-invalidation-test.js" type="text/javascript"></script>
6 <script type="text/javascript">
7 window.expectedPaintInvalidationObjects = [
8 "LayoutBlockFlow DIV id='spacer'",
9 "LayoutTable TABLE",
10 "LayoutTableSection TBODY",
11 "LayoutTableRow TR",
12 "LayoutTableCell TD",
13 "LayoutBlockFlow DIV",
14 "LayoutBlockFlow DIV",
16 function paintInvalidationTest()
18 document.getElementById("spacer").style.height = "50px";
20 </script>
21 </head>
22 <body onload="runPaintInvalidationTest()">
23 <div id="spacer" style="width: 0;"></div>
24 <table cellpadding="0" cellspacing="0" style="margin-left: 50px;">
25 <tr>
26 <td>
27 <div style="width: 50px;">
28 <div style="background-color: green; width: 100px; height: 100px; margin-left: -25px;"></div>
29 </div>
30 </td>
31 </tr>
32 </table>
33 </body>
34 </html>