mstensho | 7a651c67 | 2016-10-14 19:24:22 | [diff] [blame] | 1 | <!DOCTYPE html> |
| 2 | <style> |
| 3 | body { |
| 4 | overflow:scroll; /* A second layout pass might hide bugs. */ |
| 5 | color: black; |
| 6 | background: white; |
| 7 | } |
| 8 | </style> |
| 9 | <p>There should be a blue square below.</p> |
| 10 | <div id="multicol" style="position:relative; columns:3; column-gap:0; column-fill:auto; height:99px; line-height:20px; orphans:1; widows:1;"> |
| 11 | <br> |
| 12 | <br> |
| 13 | <table cellspacing="0" cellpadding="0"> |
| 14 | <col style="width:20px;"> |
| 15 | <col style="width:20px;"> |
| 16 | <thead> |
| 17 | <tr> |
| 18 | <td style="vertical-align:top;"><br><br></td> |
| 19 | <td style="vertical-align:top;"><br><br></td> |
| 20 | </tr> |
| 21 | </thead> |
| 22 | <tbody> |
| 23 | <tr data-expected-height="79"> |
| 24 | <td data-expected-height="79" style="vertical-align:top;"> |
| 25 | <br> |
| 26 | <div data-offset-y="20" style="position:relative; background:blue;"> |
| 27 | <br><br> |
| 28 | </div> |
| 29 | </td> |
| 30 | <td data-expected-height="79" style="vertical-align:top; background:blue;"> |
| 31 | <div style="background:white;"><br></div> |
| 32 | <div data-offset-y="20" style="position:relative;"></div> |
| 33 | </td> |
| 34 | </tr> |
| 35 | </tbody> |
| 36 | </table> |
| 37 | </div> |
| 38 | <script src="../resources/check-layout.js"></script> |
| 39 | <script> |
| 40 | checkLayout("#multicol"); |
| 41 | </script> |