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