OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <script src="../resources/check-layout.js"></script> |
| 3 <p>There should be two blue squares below.</p> |
| 4 <div id="multicol" style="columns:3; column-fill:auto; column-gap:0; position:re
lative; width:120px; height:100px; line-height:20px;"> |
| 5 <div style="height:60px;"></div> |
| 6 <div data-offset-x="0" data-offset-y="60" data-expected-height="80" style="p
adding-top:30px; padding-bottom:20px; background:blue;"> |
| 7 <div data-offset-x="0" data-offset-y="90"></div> |
| 8 <!-- This is where the soft break should occur, since it's a valid class
A break point. --> |
| 9 <div data-offset-x="40" data-offset-y="0"> |
| 10 <br> |
| 11 </div> |
| 12 </div> |
| 13 </div> |
| 14 <script> |
| 15 checkLayout("#multicol"); |
| 16 </script> |
OLD | NEW |