background-blend-mode-1-ref.html 502 B

123456789101112131415161718
  1. <!DOCTYPE html>
  2. <meta charset="utf-8">
  3. <title>Reference: Bug 1248913 - Keep background-attachment:fixed image fixed under APZ scrolling even when a background-blend-mode is applied.</title>
  4. <style>
  5. html {
  6. background: radial-gradient(circle 200px at 400px 400px, lime 100px, transparent 0) scroll,
  7. radial-gradient(circle 200px at 400px 300px, blue 100px, transparent 0) scroll
  8. white no-repeat;
  9. background-blend-mode: multiply;
  10. height: 100%;
  11. }
  12. </style>
  13. <div></div>