mix-blend-mode-mask-ref.html (586B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>CSS Test: Blended element with masking.</title> 5 <link rel="author" title="Mihai Tica" href="mailto:mitica@adobe.com"> 6 </head> 7 <style type="text/css"> 8 div { 9 width: 100px; 10 height: 100px; 11 } 12 </style> 13 <body> 14 <p>Test passes if you can see a green circle. <br> 15 The test fails if the circle is drawn with red. </p> 16 17 <div style="background: #FF0;"><div style="background: #0F0; mask-image: url('../support/red_circle.svg');"></div></div> 18 </body> 19 </html>