bg-fixed-in-opacity-ref.html (427B)
1 <!DOCTYPE html> 2 <html reftest-async-scroll > 3 <style> 4 5 body { 6 margin: 0px; 7 position: relative; 8 height: 1200.23px; 9 overflow: hidden; 10 } 11 12 .fixed-background { 13 position: absolute; 14 top: 0px; 15 bottom: 0px; 16 width: 100px; 17 background: linear-gradient(blue, blue) no-repeat fixed 0px 200px; 18 background-size: 100px 100px; 19 opacity: 0.5; 20 } 21 22 </style> 23 <div style="overflow: hidden;" class="fixed-background"></div> 24 </html>