| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <title>Test SVG in -webkit-cross-fade image with identical but differently sized
SVG elsewhere</title> | 2 <title>Test SVG in -webkit-cross-fade image with identical but differently sized
SVG elsewhere</title> |
| 3 <style> | 3 <style> |
| 4 #tst1 { | 4 #tst1 { |
| 5 width: 100px; | 5 width: 100px; |
| 6 height: 100px; | 6 height: 100px; |
| 7 background-image: -webkit-cross-fade(url("data:image/svg+xml,<svg viewBo
x='0 0 100 100' xmlns='http://www.w3.org/2000/svg'><circle cx='50' cy='50' r='35
' fill='green'/></svg>"), url("data:image/svg+xml,<svg viewBox='0 0 100 100' xml
ns='http://www.w3.org/2000/svg'><circle cx='50' cy='50' r='25' fill='red'/></svg
>"), 0); | 7 background-image: -webkit-cross-fade( |
| 8 url("data:image/svg+xml,<svg viewBox='0 0 100 100' xmlns='http://www
.w3.org/2000/svg'><circle cx='50' cy='50' r='35' fill='green'/></svg>"), |
| 9 url("data:image/svg+xml,<svg viewBox='0 0 100 100' xmlns='http://www
.w3.org/2000/svg'><circle cx='50' cy='50' r='25' fill='red'/></svg>"), |
| 10 0); |
| 8 } | 11 } |
| 9 #tst2 { | 12 #tst2 { |
| 10 width: 100px; | 13 width: 100px; |
| 11 height: 100px; | 14 height: 100px; |
| 12 background-image: -webkit-cross-fade(url("data:image/svg+xml,<svg viewBo
x='0 0 100 100' xmlns='http://www.w3.org/2000/svg'><circle cx='50' cy='50' r='25
' fill='red'/></svg>"), url("data:image/svg+xml,<svg viewBox='0 0 100 100' xmlns
='http://www.w3.org/2000/svg'><circle cx='50' cy='50' r='35' fill='green'/></svg
>"), 1); | 15 background-image: -webkit-cross-fade( |
| 16 url("data:image/svg+xml,<svg viewBox='0 0 100 100' xmlns='http://www
.w3.org/2000/svg'><circle cx='50' cy='50' r='25' fill='red'/></svg>"), |
| 17 url("data:image/svg+xml,<svg viewBox='0 0 100 100' xmlns='http://www
.w3.org/2000/svg'><circle cx='50' cy='50' r='35' fill='green'/></svg>"), |
| 18 1); |
| 13 } | 19 } |
| 14 #ref { | 20 #ref { |
| 15 background-image: url("data:image/svg+xml,<svg viewBox='0 0 100 100' xml
ns='http://www.w3.org/2000/svg'><circle cx='50' cy='50' r='35' fill='green'/></s
vg>"); | 21 background-image: url("data:image/svg+xml,<svg viewBox='0 0 100 100' xml
ns='http://www.w3.org/2000/svg'><circle cx='50' cy='50' r='35' fill='green'/></s
vg>"); |
| 16 width: 300px; | 22 width: 300px; |
| 17 height: 300px; | 23 height: 300px; |
| 18 } | 24 } |
| 19 </style> | 25 </style> |
| 20 <p>There should be three circle below. One big and two small ones. | 26 <p>There should be three circles below. One big and two small ones. |
| 21 <div id=ref></div> | 27 <div id=ref></div> |
| 22 <div id=tst1></div> | 28 <div id=tst1></div> |
| 23 <div id=tst2></div> | 29 <div id=tst2></div> |
| OLD | NEW |