position-fixed-body-ref.html (605B)
1 <!DOCTYPE html> 2 <html reftest-async-scroll> 3 <style> 4 body { 5 height: 100vh; 6 margin: 0px; 7 } 8 #scrollbox { 9 width: 100%; 10 height: 100%; 11 overflow: scroll; 12 scrollbar-width: none; 13 } 14 #scrolledContents { 15 height: 10000px; 16 background: radial-gradient(circle, blue 30%, transparent 0); 17 background-size: 80px 80px; 18 } 19 </style> 20 <body> 21 <div id="scrollbox" 22 reftest-dislayport-x="0" reftest-displayport-y="0" 23 reftest-displayport-w="800" reftest-displayport-h="2000" 24 reftest-async-scroll-x="0" reftest-async-scroll-y="20"> 25 <div id="scrolledContents"></div> 26 </div> 27 </body> 28 </html>