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

Side by Side Diff: third_party/WebKit/LayoutTests/fragmentation/single-cell-repeating-thead-break-inside-content-first-line.html

Issue 2882043002: Update our treatment of repeating headers in tables (Closed)
Patch Set: bug 720620 Created 3 years, 6 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 thead {
4 break-inside: avoid;
5 }
6 </style>
7 <p>crbug.com/720620: The border on a div straddling a page-break doesn't overlap repeating headers.</p>
8 <div style="columns:2; line-height:20px; column-fill:auto; height:100px; orphans :1; widows:1; background:yellow;">
9 <table cellspacing="0" cellpadding="0" style="background:pink;">
10 <thead>
11 <tr>
12 <th>repeated header</th>
13 </tr>
14 </thead>
15 <tbody>
16 <tr>
17 <td>
18 <div>
19 line1<br>
20 line2<br>
21 line3<br>
22 <div style="border-top: 40px solid black;">
23 line4<br>
24 line5<br>
25 </div>
26 </div>
27 </td>
28 </tr>
29 </tbody>
30 </table>
31 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698