position-fixed-async-zoom-3.html (511B)
1 <!DOCTYPE html> 2 <html reftest-async-scroll 3 reftest-displayport-x="0" reftest-displayport-y="0" 4 reftest-displayport-w="800" reftest-displayport-h="1000" 5 reftest-async-zoom="2.0"> 6 <head> 7 <style> 8 html { 9 scrollbar-width: none; 10 } 11 body { 12 height: 3000px; 13 margin: 0; 14 } 15 div { 16 position: fixed; 17 top: 20px; 18 right: 20px; 19 height: 100px; 20 width: 100px; 21 background: blue; 22 } 23 </style> 24 </head> 25 <body> 26 <div></div> 27 </body> 28 </html>