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

Side by Side Diff: third_party/WebKit/LayoutTests/fragmentation/single-line-cells-multiple-tables-caption-repeating-thead-tfoot-with-border-spacing-at-top-of-row-2.html

Issue 2584143003: Repeat footers in paginated context (Closed)
Patch Set: bug 656232 Created 3 years, 5 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, th {
4 background-color: #ddd;
5 border: 1px solid black;
6 }
7 thead, tr, tfoot {
8 break-inside: avoid;
9 }
10 </style>
11 <p>crbug.com/656232: A row positioned naturally at the top of a column should mo ve below any repeating table header. Footers should repeat at the bottom of each page.</p>
12 <div style="columns:3; line-height: 18px; column-fill: auto; height:110px; backg round-color: yellow;">
13 <table>
14 <caption style="caption-side: top;">Caption</caption>
15 <thead>
16 <tr>
17 <th>Col 1</th>
18 <th>Col 2</th>
19 </tr>
20 </thead>
21 <tbody>
22 <tr><td>Te</td><td>xt</td></tr>
23 <tr><td>Te</td><td>xt</td></tr>
24 </tbody>
25 <tfoot>
26 <tr>
27 <th>Ft 1</th>
28 <th>Ft 2</th>
29 </tr>
30 </tfoot>
31 <caption style="caption-side: bottom;">Caption</caption>
32 </table>
33 <table>
34 <thead>
35 <tr>
36 <th>Col 3</th>
37 <th>Col 4</th>
38 </tr>
39 </thead>
40 <tbody>
41 <tr><td>Te</td><td>xt</td></tr>
42 <tr><td>Te</td><td>xt</td></tr>
43 </tbody>
44 <tfoot>
45 <tr>
46 <th>Ft 3</th>
47 <th>Ft 4</th>
48 </tr>
49 </tfoot>
50 </table>
51 </div>
52
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698