OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <script src="../../../resources/check-layout.js"></script> |
| 3 <p>A bottom-aligned absolutely positioned descendant needs to be repositioned be
fore being |
| 4 repaginated when its containing block gets a new height.</p> |
| 5 <p>The word "PAPAYA" should be seen in the first column below.</p> |
| 6 <div id="multicol" style="position:relative; -webkit-columns:2; column-fill:auto
; width:20em; height:200px; color:papayawhip; background:papayawhip;"> |
| 7 <div style="position:relative; height:100%;"> |
| 8 <div data-offset-y="140" style="position:absolute; bottom:0; height:50px
; line-height:50px; background:black;"> |
| 9 <div data-offset-y="0">PAPAYA</div> |
| 10 </div> |
| 11 </div> |
| 12 </div> |
| 13 <script> |
| 14 document.body.offsetTop; |
| 15 document.getElementById("multicol").style.height = "190px"; |
| 16 checkLayout("#multicol"); |
| 17 </script> |
OLD | NEW |