OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <style> |
| 3 body { overflow: scroll; } |
| 4 tr { break-inside:avoid; } |
| 5 </style> |
| 6 <div id="multicol" style="columns:4; column-fill:auto; column-gap:0; height:90px
; line-height:20px; orphans:1; widows:1;"> |
| 7 <table style="width:50px;" cellspacing="0" cellpadding="0"> |
| 8 <thead style="break-inside:avoid;"> |
| 9 <!-- This is a table header that repeats in all columns the table oc
curs. --> |
| 10 <tr data-offset-y="0" data-expected-height="20"> |
| 11 <td><br></td> |
| 12 </tr> |
| 13 </thead> |
| 14 <tbody> |
| 15 <tr data-offset-y="20" data-expected-height="60"> |
| 16 <td><br><br><br></td> |
| 17 </tr> |
| 18 <tr data-offset-y="110" data-expected-height="60"> |
| 19 <td><br><br><br></td> |
| 20 </tr> |
| 21 <tr data-offset-y="200" data-expected-height="60"> |
| 22 <td><br><br><br></td> |
| 23 </tr> |
| 24 </tbody> |
| 25 <tfoot> |
| 26 <tr data-offset-y="290" data-expected-height="60"> |
| 27 <td><br><br><br></td> |
| 28 </tr> |
| 29 </tfoot> |
| 30 </table> |
| 31 </div> |
| 32 <script src="../resources/check-layout.js"></script> |
| 33 <script> |
| 34 checkLayout("#multicol"); |
| 35 </script> |
OLD | NEW |