context-fill-opacity-02.html (463B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>Test context-fill-opacity with different fill-opacity values (test image caching correctness)</title> 5 <style> 6 7 img { 8 width: 100px; 9 height: 100px; 10 -moz-context-properties: fill-opacity; 11 } 12 13 #img1 { 14 fill-opacity: 0.3; 15 } 16 17 #img2 { 18 fill-opacity: 0.7; 19 } 20 21 </style> 22 </head> 23 <body> 24 <img id="img1" src="context-fill-opacity-02.svg"> 25 <img id="img2" src="context-fill-opacity-02.svg"> 26 </body> 27 </html>