OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 |
| 3 <p>Remove the only column content that sits between two spanners (the absolutely
positioned boxes |
| 4 having their containing block outside the multicol container). Check that th
e adjoining margins |
| 5 on the two spanners collapse.</p> |
| 6 <p>There should be a blue <em>square</em> below.</p> |
| 7 <div style="-webkit-column-count:2; width:100px; background:blue;"> |
| 8 <div style="-webkit-column-span:all; margin-bottom:100px;"></div> |
| 9 <div style="position:absolute;"></div> |
| 10 <div id="toRemove">FAIL</div> |
| 11 <div style="position:absolute;"></div> |
| 12 <div style="-webkit-column-span:all; margin-top:100px;"></div> |
| 13 </div> |
| 14 |
| 15 <script> |
| 16 onload = function() { |
| 17 document.body.offsetTop; |
| 18 document.getElementById("toRemove").style.display = "none"; |
| 19 } |
| 20 </script> |
OLD | NEW |