multicol-with-text-change-role-relayout-crash.html (695B)
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=1278439"> 5 <div id="container"> 6 <div id="mc" style="columns:2; column-fill:auto; width:200px; height:30px; line-height:20px; orphans:1; widows:1;"> 7 x<br> 8 x<br> 9 </div> 10 </div> 11 <script> 12 requestAnimationFrame(()=> { 13 requestAnimationFrame(()=> { 14 requestAnimationFrame(()=> { 15 mc.style.width = "201px"; 16 container.setAttribute("role", "treegrid"); 17 document.body.offsetTop; 18 document.documentElement.className = ""; 19 }); 20 }); 21 }); 22 </script>