OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <script src="../resources/check-layout.js"></script> |
| 3 <p>There should be a blue square below.</p> |
| 4 <div id="multicol" style="position:relative; columns:2; column-fill:auto; column
-gap:10px; width:130px; height:120px;"> |
| 5 <div style="height:30px; background:blue;"></div> |
| 6 <div data-offset-x="0" data-offset-y="30" data-expected-height="290" style="
break-inside:avoid;"> |
| 7 <div data-offset-x="0" data-offset-y="30" style="height:10px; background
:blue;"></div> |
| 8 <div> |
| 9 <div data-offset-x="0" data-offset-y="40" style="height:10px; backgr
ound:blue;"></div> |
| 10 <div> |
| 11 <div data-offset-x="0" data-offset-y="50" style="height:10px; ba
ckground:blue;"></div> |
| 12 <div data-offset-x="70" data-offset-y="0" style="break-before:co
lumn; height:200px;"></div> |
| 13 </div> |
| 14 </div> |
| 15 </div> |
| 16 </div> |
| 17 <script> |
| 18 checkLayout("#multicol"); |
| 19 </script> |
OLD | NEW |