Upstream version 5.34.98.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / repaint / table-cell-overflow.html
1 <head>
2 <script src="resources/repaint.js"></script>
3 <script>
4     function repaintTest()
5     {
6         document.getElementById("target").style.backgroundColor = "transparent";
7     }
8 </script>
9 </head>
10 <body onload="runRepaintTest();">
11 <table cellpadding=1 cellspacing=0>
12     <tr>
13         <td>
14             <div style="width: 100px;">
15                 <div style="width: 100px; height: 100px; background-color: blue; margin-left: 50px;"></div>
16             </div>
17         </td>
18         <td>
19             <div style="width: 100px; height: 100px; background-color: red;" id="target"></div>
20         </td>
21     </tr>
22 </table>
23 </body>