OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <style> |
| 3 body { overflow:scroll; } /* A second layout pass might hide the bug. */ |
| 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 <caption> |
| 12 <br><br> |
| 13 </caption> |
| 14 <tbody data-expected-height="60"> |
| 15 <tr data-expected-height="60"> |
| 16 <td data-expected-height="60"><br><br><br></td> |
| 17 <td data-expected-height="60" style="background:blue;"> |
| 18 <div data-offset-y="20" data-expected-height="20" style="wid
th:20px; background:cyan;"><br></div> |
| 19 </td> |
| 20 </tr> |
| 21 </tbody> |
| 22 </table> |
| 23 </div> |
| 24 <script src="../resources/check-layout.js"></script> |
| 25 <script> |
| 26 checkLayout("#multicol"); |
| 27 </script> |
OLD | NEW |