mix-blend-mode-parent-element-overflow-scroll-blended-position-fixed-ref.html (1275B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>CSS Reftest Reference</title> 6 <link rel="author" title="Mirela Budăeș" href="mailto:mbudaes@adobe.com"> 7 <link rel="author" title="Ion Roșca" href="mailto:rosca@adobe.com"> 8 <link rel="reviewer" title="Mihai Țică" href="mailto:mitica@adobe.com"> 9 <style type="text/css"> 10 .parent { 11 background: aqua;/*rgb(0,255,255);*/ 12 width: 150px; 13 height: 150px; 14 position: relative; 15 z-index: 1; 16 overflow:scroll; 17 } 18 19 .blended { 20 background: blue;/*rgb(0,0,255);*/ 21 width: 100px; 22 height: 100px; 23 position: fixed; 24 } 25 26 .scrollableContent { 27 width: 200px; 28 height: 200px; 29 } 30 </style> 31 </head> 32 <body> 33 <p>Test passes if you see a blue square inside an aqua container. <br> 34 The aqua container should have scrollbars on the left and bottom.</p> 35 <div class="parent"> 36 <div class="blended"></div> 37 <div class="scrollableContent"></div> 38 </div> 39 </body> 40 </html>