OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <style> |
| 3 body { overflow:scroll; } /* A second layout pass might hide bugs. */ |
| 4 </style> |
| 5 <p>There should be a blue, a cyan, and another blue square below, stacked vertic
ally.</p> |
| 6 <div id="multicol" style="columns:3; column-gap:0; column-fill:auto; width:60px;
height:99px; line-height:20px; orphans:1; widows:1;"> |
| 7 <br> |
| 8 <br> |
| 9 <br> |
| 10 <table cellspacing="0" cellpadding="0"> |
| 11 <tbody> |
| 12 <tr data-expected-height="60"> |
| 13 <td data-expected-height="60"><br><br><br></td> |
| 14 <td data-expected-height="60" style="background:blue;"> |
| 15 <div data-offset-y="20" data-expected-height="20" style="wid
th:20px; background:cyan;"><br></div> |
| 16 </td> |
| 17 </tr> |
| 18 </tbody> |
| 19 <thead> |
| 20 <tr> |
| 21 <td style="vertical-align:top;"><br><br></td> |
| 22 <td style="vertical-align:top;"><br><br></td> |
| 23 </tr> |
| 24 </thead> |
| 25 </table> |
| 26 </div> |
| 27 <script src="../resources/check-layout.js"></script> |
| 28 <script> |
| 29 checkLayout("#multicol"); |
| 30 </script> |
OLD | NEW |