pinch-zoom-position-fixed-ref.html (461B)
1 <!DOCTYPE html> 2 <html reftest-resolution="1.5"> 3 <head> 4 <meta name="viewport" content="width=device-width"> 5 <style> 6 body { 7 margin: 0; 8 height: 2000px; 9 overflow: hidden; 10 } 11 div { 12 position: absolute; 13 bottom: 0; 14 width: 100%; 15 height: 500px; 16 background: repeating-linear-gradient(90deg, transparent, transparent 20px, black 20px, black 40px); 17 } 18 </style> 19 </head> 20 <body> 21 <div></div> 22 </body> 23 </html>