OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <script src="../../resources/check-layout.js"></script> |
| 3 <p>Test that a multicol container inside a paged container is fragmented correct
ly.</p> |
| 4 <p>Below there should be a blue square above a papayawhip square above some spac
ing above a horizontal scrollbar. |
| 5 There should be no red.</p> |
| 6 <div id="pagedContainer" style="position:relative; overflow-y:-webkit-paged-x;
-webkit-column-gap:0; line-height:50px; width:50px; height:140px;"> |
| 7 <div style="-webkit-columns:2; -webkit-column-gap:0;"> |
| 8 <div data-offset-x="0" data-offset-y="0" style="background:blue;"><br></
div> |
| 9 <div data-offset-x="0" data-offset-y="50" style="background:papayawhip;"
><br></div> |
| 10 <div data-offset-x="25" data-offset-y="0" style="background:blue;"><br><
/div> |
| 11 <div data-offset-x="25" data-offset-y="50" style="background:papayawhip;
"><br></div> |
| 12 <div data-offset-x="50" data-offset-y="0" style="background:red;"> |
| 13 X<br> |
| 14 X<br> |
| 15 X<br> |
| 16 </div> |
| 17 </div> |
| 18 </div> |
| 19 <script> |
| 20 checkLayout("#pagedContainer"); |
| 21 </script> |
OLD | NEW |