Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / table-collapsed-borders.html
blob7e9851e4b947291d6d45fe6307ea7d985bad308d
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>Test for Buzilla Bug 67877: "border: collapse" + "display: none" rows in the tbody while having thead or tfoot doesn't render the opposite border.</title>
6 <style>
7 table {
8 border: 3px solid;
9 width: 100%;
10 border-collapse: collapse;
12 tbody tr {
13 display: none;
15 </style>
17 </head>
18 <body>
20 <table>
21 <thead>
22 <tr>
23 <th></th>
24 </tr>
25 </thead>
26 <tbody>
27 <tr>
28 <td></td>
29 </tr>
30 </tbody>
31 </table>
34 <table>
35 <tbody>
36 <tr>
37 <td></td>
38 </tr>
39 </tbody>
40 <tfoot>
41 <tr>
42 <td></td>
43 </tr>
44 </tfoot>
45 </table>
47 </body></html>