context-fill-03.html (409B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>Test context-fill where fill is semi-transparent</title> 5 <style> 6 7 img { 8 width: 100px; 9 height: 100px; 10 -moz-context-properties: fill; 11 fill: rgb(0% 100% 0% / 50%); 12 } 13 14 </style> 15 </head> 16 <body> 17 <img src="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg'><rect width='100%' height='100%' fill='context-fill red'/></svg>"> 18 </body> 19 </html>