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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/multicol/table-row-height-increase.html

Issue 1602773005: Respect break-inside:avoid on table rows (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated Created 4 years, 10 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
1 <style> 1 <style>
2 td { 2 td {
3 background-color: green;
4 vertical-align: top; 3 vertical-align: top;
5 font-family: Ahem; 4 font-family: Ahem;
6 font-size: 20px; 5 font-size: 20px;
7 color: rgba(0, 0, 0, .5);
8 } 6 }
9 7
10 </style> 8 </style>
11 <div style="width:480px; height:60px; -webkit-column-count:2; -webkit-column-gap :0; column-count:2; column-gap:0; column-fill:auto;"> 9 <div style="width:480px; height:60px; -webkit-column-count:2; -webkit-column-gap :0; column-count:2; column-gap:0; column-fill:auto;">
12 <table cellpadding=0 cellspacing=0 style="background-color: red;"> 10 <table cellpadding=0 cellspacing=0>
mstensho (USE GERRIT) 2016/02/03 14:38:48 Looks like the table cells with text are pushed to
13 <tr style="height: 30px;"> 11 <tr style="height: 30px;">
14 <td style="width: 60px;" rowspan=2></td> 12 <td style="width: 60px;" rowspan=2></td>
15 <td></td> 13 <td></td>
16 <td></td> 14 <td></td>
17 <td></td> 15 <td></td>
18 </tr> 16 </tr>
19 <tr> 17 <tr>
20 <td style="width: 60px;"></td> 18 <td style="width: 60px;"></td>
21 <td style="width: 60px;">abc def</td> 19 <td style="width: 60px;">abc def</td>
22 <td style="width: 60px;">abc def</td> 20 <td style="width: 60px;">abc def</td>
23 </tr> 21 </tr>
24 </table> 22 </table>
25 </div> 23 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698