context-stroke-08.html (475B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>Test context-stroke when only "-moz-context-properties: fill" is specified</title> 5 <style> 6 7 img { 8 width: 100px; 9 height: 100px; 10 -moz-context-properties: fill; 11 fill: red; 12 stroke: red; 13 } 14 15 </style> 16 </head> 17 <body> 18 <img src="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg'><rect x='5' y='5' width='90' height='90' fill='none' stroke='context-stroke blue' stroke-width='10'/></svg>"> 19 </body> 20 </html>