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

Side by Side Diff: third_party/WebKit/LayoutTests/fragmentation/fragmented-table-cell.html

Issue 2412923002: Top-align table cells in rows that cross fragmentainer boundaries. (Closed)
Patch Set: Let's keep the pagination strut substraction thing a bit longer, since removing it affects some DRT… Created 4 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 td { width:1em; }
4 </style>
5 <p>The word "PASS" should be seen below, with large letter
6 spacing. There should be a blue rectangle snapped to the blue
7 line. There should be no red.</p>
8 <div style="columns:3; column-gap:0; column-fill:auto; width:15em; height:90px; line-height:20px; orphans:1; widows:1; border-top:1px solid blue;">
9 <br>
10 <br>
11 <table cellpadding="0" cellspacing="0" style="background:white;">
12 <tr>
13 <td style="vertical-align:bottom;">
14 P
15 </td>
16 <td style="vertical-align:baseline; background:red;">
17 <div style="background:white;">
18 A<br><br>
19 <div style="break-inside:avoid; width:100%; height:1em; back ground:blue;"></div>
20 </div>
21 </td>
22 <td style="vertical-align:top;">
23 S
24 </td>
25 <td style="vertical-align:middle;">
26 S
27 </td>
28 </tr>
29 </table>
30 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698