Upstream version 5.34.98.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / repaint / table-cell-vertical-overflow.html
1 <head>
2     <title></title>
3     <script>
4         if (window.testRunner)
5             testRunner.testRepaint();
6     </script>
7     <style>
8         td { border: 4px dotted black; }
9     </style>
10 </head>
11 <body>
12     <table style="margin-top: 50px;">
13         <tr>
14             <td>
15                 <div style="height: 50px; width: 100px; background: lightgreen;">
16                 </div>
17             </td>
18             <td>
19                 <div style="height: 10px; width: 100px; background: lightgreen;">
20                     <div style="height: 100px; width: 50px; background: skyblue;">
21                     </div>
22                 </div>
23             </td>
24             <td>
25                 <div style="height: 10px; width: 100px; background: lightgreen;">
26                     <div style="margin-top: -75px; height: 100px; width: 50px; background: skyblue;">
27                     </div>
28                 </div>
29             </td>
30         </tr>
31     </table>
32     <table style="margin-top: 150px; border-collapse: collapse;">
33         <tr>
34             <td>
35                 <div style="height: 50px; width: 100px; background: lightgreen;">
36                 </div>
37             </td>
38             <td>
39                 <div style="height: 10px; width: 100px; background: lightgreen;">
40                     <div style="height: 100px; width: 50px; background: skyblue;">
41                     </div>
42                 </div>
43             </td>
44             <td>
45                 <div style="height: 10px; width: 100px; background: lightgreen;">
46                     <div style="margin-top: -75px; height: 100px; width: 50px; background: skyblue;">
47                     </div>
48                 </div>
49             </td>
50         </tr>
51     </table>
52 </body>