out-of-flow-in-multicolumn-106-ref.html (778B)
1 <!DOCTYPE html> 2 <html class="reftest-wait"> 3 <link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org"> 4 <p>Test passes if there is a filled green square and <strong>no red</strong>, 5 and a horizontal scrollbar (unless overlay scrollbars are enabled).</p> 6 <div id="scrollable" style="overflow:auto; width:200px; height:200px;"> 7 <div style="width:10000px;"> 8 <div style="float:left; width:9800px; height:1px;"></div> 9 <div style="float:left; width:100px; height:100px; background:green;"></div> 10 </div> 11 </div> 12 <script> 13 scrollable.scrollLeft = 100000; 14 requestAnimationFrame(()=> { 15 requestAnimationFrame(()=> { 16 document.documentElement.classList.remove("reftest-wait"); 17 }); 18 }); 19 </script> 20 </html>