OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <style> | |
3 table td { | |
4 padding: 0; | |
5 margin: 0; | |
mstensho (USE GERRIT)
2015/09/30 11:09:39
No UA-defined margins on those elements.
| |
6 } | |
7 </style> | |
8 <p>crbug.com/534830: Don't deduct the min-width of empty cells from the availabl e table width. </p> | |
mstensho (USE GERRIT)
2015/09/30 11:09:39
Can you please write a test with a human readable
| |
9 <table style="width: 800px; background-color: black;"> | |
mstensho (USE GERRIT)
2015/09/30 11:09:39
This is wider than the initial viewport when start
| |
10 <tr> | |
11 <td style="background-color:red; width: 10px; height:20px;"></td> | |
mstensho (USE GERRIT)
2015/09/30 11:09:39
Red means danger. Maybe set the background of the
| |
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 |