OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <style> |
| 3 table { |
| 4 font-size: 16px; |
| 5 border-collapse: collapse; |
| 6 } |
| 7 td, th { |
| 8 background-color: #ddd; |
| 9 border: 1px solid black; |
| 10 } |
| 11 thead, tr, tfoot { |
| 12 break-inside: avoid; |
| 13 } |
| 14 </style> |
| 15 <p>crbug.com/656232: Table headers and footers should repeat correctly in the pr
esence of multiple top captions.</p> |
| 16 <div style="columns:3; line-height: 18px; column-fill: auto; height:91px; backgr
ound-color: yellow;"> |
| 17 <table> |
| 18 <caption>Caption</caption> |
| 19 <caption>Caption</caption> |
| 20 <thead> |
| 21 <tr> |
| 22 <th>Col 1</th> |
| 23 <th>Col 2</th> |
| 24 </tr> |
| 25 </thead> |
| 26 <tbody> |
| 27 <tr><td>Te</td><td>xt</td></tr> |
| 28 <tr><td>Te</td><td>xt</td></tr> |
| 29 <tr><td>Te</td><td>xt</td></tr> |
| 30 <tr><td>Te</td><td>xt</td></tr> |
| 31 <tr><td>Te</td><td>xt</td></tr> |
| 32 </tbody> |
| 33 <tfoot> |
| 34 <tr> |
| 35 <th>Ft 1</th> |
| 36 <th>Ft 2</th> |
| 37 </tr> |
| 38 </tfoot> |
| 39 </table> |
| 40 </div> |
| 41 |
OLD | NEW |