multicol-under-vertical-rl-scroll-ref.html (623B)
1 <!DOCTYPE html> 2 <title>Multicol under vertical-rl scrolling container</title> 3 <p>Passes if there are two green squares</p> 4 <div id="scroller" style="width: 200px; height: 200px; overflow: scroll; border: 1px solid black"> 5 <div style="width: 580px; height: 500px; position: relative"> 6 <div style="position: absolute; right: 0"> 7 <div style="width: 80px; height: 80px; background: green"></div> 8 <div style="height: 20px"></div> 9 <div style="width: 80px; height: 80px; background: green"></div> 10 </div> 11 </div> 12 </div> 13 <script> 14 // Scroll all the way to the right. 15 scroller.scrollLeft = 800; 16 </script>