Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / sub-pixel / table-cell-background.html
blobf0e0d5b2f4a8ca6c9f424189bb890fbd846c7319
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>