column-balancing-with-oofs-crash.html (514B)
1 <!DOCTYPE html> 2 <link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1362550"> 3 <style> 4 .multicol { 5 column-count: 2; 6 width: 200px; 7 } 8 .relpos { 9 position: relative; 10 } 11 .abspos { 12 height: 25%; 13 position: absolute; 14 } 15 </style> 16 <div class="multicol"> 17 <div class="relpos"> 18 <div class="abspos"> 19 <p> 20 text 21 </p> 22 </div> 23 </div> 24 <figure class="relpos"> 25 <div class="abspos"> 26 <p> 27 text 28 </p> 29 </div> 30 </figure> 31 </div>