tizen beta release
[framework/web/webkit-efl.git] / LayoutTests / fast / repaint / table-row.html
1 <html>
2 <head>
3     <title>Test for http://bugs.webkit.org/show_bug.cgi?id=14056</title>
4     <script src="resources/repaint.js" type="text/javascript"></script>
5     <script type="text/javascript">
6         function repaintTest()
7         {
8             var div = document.getElementById("target");
9             div.className = "green";
10         }
11     </script>
12     <style>
13         tr {
14             background-color: red;
15         }
16
17         td {
18             width: 100px;
19             height: 100px;
20         }
21
22         .green {
23             background-color:green;
24             min-height: 500px; 
25         }
26     </style>
27 </head>
28 <body onload="runRepaintTest()">
29     <table>
30         <tr id="target">
31             <td>
32             </td>
33         </tr>
34     </table>
35 </body>
36 </html>