Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(186)

Side by Side Diff: third_party/WebKit/LayoutTests/fast/table/colspan-with-empty-cells-needing-extra-width-expected.html

Issue 1368243002: Don't deduct min-width from the available width for empty cells (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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;">&nbsp;</td>
13 </tr>
14 <tr>
15 <td colspan="2" style="background-color:yellow;">
16 TestTestTest
17 </td>
18 </tr>
19 </table>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698