Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / repaint / table-col-background.html
blobb3fbc11f958dd9c8c363b3a0c766d11adb00cf00
1 <html>
2 <head>
3 <title>Test for http://bugs.webkit.org/show_bug.cgi?id=5821</title>
4 <script src="resources/text-based-repaint.js" type="text/javascript"></script>
5 <script type="text/javascript">
6 function repaintTest()
8 document.getElementById("col").style.backgroundColor = "green";
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>