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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/multicol/table-row-height-increase-expected.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, 11 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;
5 font-family: Ahem; 3 font-family: Ahem;
6 font-size: 20px; 4 font-size: 20px;
7 color: rgba(0, 0, 0, .5);
8 } 5 }
9 6
10 </style> 7 </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;"> 8 <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: green;"> 9 <table cellpadding=0 cellspacing=0>
13 <tr style="height: 30px;"> 10 <tr style="height: 60px;">
14 <td style="width: 60px;" rowspan=2></td> 11 <td style="width: 60px;" rowspan=2></td>
15 <td></td> 12 <td></td>
16 <td></td> 13 <td></td>
17 <td></td> 14 <td></td>
18 </tr> 15 </tr>
19 <tr> 16 <tr>
20 <td style="width: 60px;"></td> 17 <td style="width: 60px;"></td>
21 <td style="width: 60px;">abc def</td> 18 <td style="width: 60px;">abc def</td>
22 <td style="width: 60px;">abc def</td> 19 <td style="width: 60px;">abc def</td>
23 </tr> 20 </tr>
24 </table> 21 </table>
25 </div> 22 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698