out-of-flow-in-multicolumn-105-ref.html (741B)
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 vertical scrollbar (unless overlay scrollbars are enabled).</p> 6 <div id="scrollable" style="overflow:auto; width:200px; height:200px;"> 7 <div style="height:10000px;"> 8 <div style="height:9800px;"></div> 9 <div style="width:100px; height:100px; background:green;"></div> 10 </div> 11 </div> 12 <script> 13 scrollable.scrollTop = 100000; 14 requestAnimationFrame(()=> { 15 requestAnimationFrame(()=> { 16 document.documentElement.classList.remove("reftest-wait"); 17 }); 18 }); 19 </script> 20 </html>