Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / paint / invalidation / spv2 / table-col-background.html
blobfb581c565be1febf9ff4af82344777c6a76f6d51
1 <!-- Based on fast/repaint/table-col-background.html -->
2 <html>
3 <head>
4 <title>Test for http://bugs.webkit.org/show_bug.cgi?id=5821</title>
5 <script src="resources/paint-invalidation-test.js" type="text/javascript"></script>
6 <script type="text/javascript">
7 window.expectedPaintInvalidationObjects = [
8 "LayoutTableCell TD",
9 "LayoutTableCol COL id='col'",
11 function paintInvalidationTest()
13 document.getElementById("col").style.backgroundColor = "green";
15 </script>
16 </head>
17 <body onload="runPaintInvalidationTest()">
18 <table>
19 <col id="col" style="background-color: red;">
20 <tr>
21 <td style="width: 100px; height: 100px;">
22 </td>
23 </tr>
24 </table>
25 </body>
26 </html>