uncontained-oof-in-inline-after-break-000-crash.html (778B)
1 <!DOCTYPE html> 2 <html class="test-wait"> 3 <link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org"> 4 <link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1285743"> 5 <div style="columns:2; line-height:20px;"> 6 <div id="b" style="height:20px; column-fill:auto;"> 7 <br> 8 <span> 9 x 10 <div id="c" style="position:absolute; top:0; left:0; width:10px; column-fill:auto; height:40px;"> 11 <br><br><br><br><br> 12 </div> 13 </span> 14 </div> 15 </div> 16 <script> 17 requestAnimationFrame(()=> { 18 requestAnimationFrame(()=> { 19 b.style.columns = "2"; 20 c.style.columns = "3"; 21 document.documentElement.classList.remove("test-wait"); 22 }); 23 }); 24 </script> 25 </html>