Speculatively backout changeset bc8d1b9545c5 (bug 914926) on suspicion of causing...
[gecko.git] / layout / reftests / table-width / percent-zero.html
blob97a9a25b697e3df8f2e71e3b804c25578fd81b62
1 <!DOCTYPE HTML>
2 <html>
3 <head>
4 <title>Percent widths on table cells</title>
5 <style type="text/css">
7 table {
8 border-spacing: 3px 5px;
9 padding: 2px 3px 4px 5px;
12 td {
13 border: none;
14 padding: 0;
17 </style>
18 </head>
19 <body>
21 <table><tr>
22 <td style="background: yellow" width="0%">x</td>
23 <td style="background:aqua">x</td>
24 </tr></table>
26 <table>
27 <tr><td style="background: yellow" width="0%">x</td></tr>
28 <tr><td style="background:aqua" width="50">x</td></tr>
29 </table>
31 </body>
32 </html>