Upstream version 5.34.98.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / repaint / table-col-background.html
1 <html>
2 <head>
3     <title>Test for http://bugs.webkit.org/show_bug.cgi?id=5821</title>
4     <script src="resources/repaint.js" type="text/javascript"></script>
5     <script type="text/javascript">
6         function repaintTest()
7         {
8             document.getElementById("col").style.backgroundColor = "green";
9         }
10     </script>
11 </head>
12 <body onload="runRepaintTest()">
13     <table>
14         <col id="col" style="background-color: red;">
15         <tr>
16             <td style="width: 100px; height: 100px;">
17             </td>
18         </tr>
19     </table>
20 </body>
21 </html>