position-fixed-transformed-1.html (348B)
1 <html reftest-async-scroll 2 reftest-async-scroll-x="0" 3 reftest-async-scroll-y="200"> 4 <head> 5 <style> 6 .fixedpos { 7 transform: translateX(0px); 8 position: fixed; 9 top: 0; 10 width: 100%; 11 height: 100px; 12 background: red; 13 } 14 .filler { 15 height: 4000px; 16 } 17 </style> 18 </head> 19 <body> 20 <div class="fixedpos"></div> 21 <div class="filler"></div> 22 </body> 23 </html>