Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / sub-pixel / table-cell-background.html
1 <!DOCTYPE html>
2 <html>
3         <head>
4         <style>
5                 body { zoom: 1.25; }
6                 table { background: red; }
7                 td { background: white; }
8         </style>
9         </head>
10         <body>
11                 <div style="height: 35px;">There should be no red line between the rows.</div>
12                 <table cellpadding="0" cellspacing="0" width="100%">
13                         <tr>
14                                 <td>
15                                         <div style="margin-top: 10px">first row</div>
16                                 </td>
17                         </tr>
18                         <tr>
19                                 <td>second row</td>
20                         </tr>
21                 </table>
22         </body>
23 </html>