OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <title>Test SVG in -webkit-cross-fade image</title> | 2 <title>Test SVG in -webkit-cross-fade image</title> |
3 <style> | 3 <style> |
4 div { | 4 div { |
5 display: inline-block; | 5 display: inline-block; |
6 width: 100px; | 6 width: 100px; |
7 height: 100px; | 7 height: 100px; |
8 } | 8 } |
9 #tst1 { | 9 #tst1 { |
10 background-image: -webkit-cross-fade( | 10 background-image: -webkit-cross-fade( |
(...skipping 18 matching lines...) Expand all Loading... |
29 url("data:image/svg+xml,<svg viewBox='0 0 10 10' xmlns='http://www.w3.or
g/2000/svg'><circle cx='5' cy='5' r='2.5' fill='green'/></svg>"), | 29 url("data:image/svg+xml,<svg viewBox='0 0 10 10' xmlns='http://www.w3.or
g/2000/svg'><circle cx='5' cy='5' r='2.5' fill='green'/></svg>"), |
30 url("resources/green-10.png"), | 30 url("resources/green-10.png"), |
31 0.0); | 31 0.0); |
32 } | 32 } |
33 </style> | 33 </style> |
34 <p>There should be four green circles below. | 34 <p>There should be four green circles below. |
35 <div id=tst1></div> | 35 <div id=tst1></div> |
36 <div id=tst2></div> | 36 <div id=tst2></div> |
37 <div id=tst3></div> | 37 <div id=tst3></div> |
38 <div id=tst4></div> | 38 <div id=tst4></div> |
OLD | NEW |