test-bg-attachment-fixed.html (521B)
1 <html style="overflow:hidden" 2 reftest-displayport-w="800" reftest-displayport-h="1000"> 3 <head> 4 <meta name="viewport" content="width=800; height=1000; initial-scale=1.0"> 5 <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"> 6 <script> 7 function run() { 8 window.scrollTo(0, 30); 9 } 10 </script> 11 <style type="text/css"> 12 body 13 { 14 background-image:url("bg.png"); 15 background-repeat:no-repeat; 16 background-attachment:fixed; 17 } 18 </style> 19 </head> 20 <body onload="run()" style="height: 10000px"> 21 </body> 22 </html>