OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <style> | |
3 table td { | |
4 padding: 0; | |
5 margin: 0; | |
6 } | |
7 </style> | |
8 <p>crbug.com/534830: Don't deduct the min-width of empty cells from the availabl e table width. </p> | |
9 <table style="width: 800px; background-color: black;"> | |
10 <tr> | |
11 <td style="background-color:red; width: 10px; height:20px;"></td> | |
12 <td style="background-color:blue;"> </td> | |
13 </tr> | |
14 <tr> | |
15 <td colspan="2" style="background-color:yellow;"> | |
16 TestTestTest | |
17 </td> | |
18 </tr> | |
19 </table> | |
OLD | NEW |