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

Side by Side Diff: third_party/WebKit/LayoutTests/fragmentation/single-line-cells-repeating-thead-cell-straddles-page-expected.html

Issue 2587673003: Content of cell should avoid repeating headers when it straddles multiple pages (Closed)
Patch Set: bug 675453 Created 4 years 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 td, th {
7 background-color: #ddd;
8 border: 1px solid black;
9 }
10 .header {
11 font-weight: bold;
12 text-align: center
13 }
14 </style>
15 <p>crbug.com/675453: Content of a cell that spans multiple pages should avoid th e repeating header.</p>
16 <div style="columns:3; line-height: 20px; column-fill: auto; height:100px; backg round-color: yellow;">
17 <table>
18 <tr><td class="header">Col 1</td><td class="header">Col 2</td></tr>
19 <tr><td>Te</td><td>xt</td></tr>
20 <tr><td>Te</td><td>xt</td></tr>
21 <tr><td style="height: 28px; vertical-align: top;">Te</td><td style="ver tical-align: top;">xt</td></tr>
22 <tr><td class="header">Col 1</td><td class="header">Col 2</td></tr>
23 <tr><td>
24 <div style="height: 76px; margin-top: -2px;">
25 Te<br>
26 Te<br>
27 Te<br>
28 </div>
29 </td>
30 <td>
31 <div style="height: 76px; margin-top: -2px;">
32 xt<br>
33 xt<br>
34 xt<br>
35 </div>
36 </td></tr>
37 <tr><td class="header">Col 1</td><td class="header">Col 2</td></tr>
38 <tr><td>
39 <div style="height: 40px; margin-top: -2px;">
40 Te<br>
41 Te
42 </div>
43 </td>
44 <td>
45 <div style="height: 40px; margin-top: -2px;">
46 xt<br>
47 xt
48 </div>
49 </td></tr>
50 <tr><td class="header">Ft 1</td><td class="header">Ft 2</td></tr>
51 </table>
52 </div>
53
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698