background-blend-mode-1.html (739B)
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-scroll-x="0" reftest-async-scroll-y="100"> 6 7 <meta charset="utf-8"> 8 <title>Bug 1248913 - Keep background-attachment:fixed image fixed under APZ scrolling even when a background-blend-mode is applied.</title> 9 10 <style> 11 12 html { 13 background: radial-gradient(circle 200px at 400px 400px, lime 100px, transparent 0) fixed, 14 radial-gradient(circle 200px at 400px 400px, blue 100px, transparent 0) scroll 15 white no-repeat; 16 background-blend-mode: multiply; 17 scrollbar-width: none; 18 } 19 20 body { 21 height: 4000px; 22 } 23 24 </style> 25 26 <div></div>