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

Side by Side Diff: third_party/WebKit/LayoutTests/fragmentation/single-line-cells-nested-repeating-thead-tfoot-2.html

Issue 2584143003: Repeat footers in paginated context (Closed)
Patch Set: bug 656232 Created 3 years, 4 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 table {
4 border-collapse: collapse;
5 }
6 thead, tr, tfoot {
7 break-inside: avoid;
8 }
9 th, td {
10 padding: 0px;
11 }
12 </style>
13 <p>crbug.com/656232: A nested table header group repeats on each page.</p>
14 <div style="-webkit-columns:3; line-height: 20px; column-fill: auto; height:190p x;">
15 <table id="top">
16 <thead id="very-top-thead">
17 <tr>
18 <th>Col 0</th>
19 </tr>
20 </thead>
21 <tr><td>
22 <table id="top">
23 <thead id="top-thead">
24 <tr>
25 <th>Col 1</th>
26 </tr>
27 </thead>
28 <tr><td>
29 <table id="next">
30 <thead id="next-thead">
31 <tr>
32 <th>Col 1</th>
33 <th>Col 2</th>
34 </tr>
35 </thead>
36 <tbody>
37 <tr><td>Te</td><td>xt</td></tr>
38 <tr><td>Te</td><td>xt</td></tr>
39 <tr><td>Te</td><td>xt</td></tr>
40 <tr><td>Te</td><td>xt</td></tr>
41 <tr><td>Te</td><td>xt</td></tr>
42 <tr><td>Te</td><td>xt</td></tr>
43 <tr><td>Te</td><td>xt</td></tr>
44 <tr><td>Te</td><td>xt</td></tr>
45 <tr><td>Te</td><td>xt</td></tr>
46 <tr><td>Te</td><td>xt</td></tr>
47 <tr><td>Te</td><td>xt</td></tr>
48 </tbody>
49 <tfoot>
50 <tr>
51 <th>Ft 1</th>
52 <th>Ft 2</th>
53 </tr>
54 </tfoot>
55 </table>
56 </td></tr>
57 </table>
58 </td></tr>
59 </table>
60 </div>
61
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698