OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <title>Test SVG fragments in -webkit-cross-fade image</title> | 2 <title>Test SVG fragments in -webkit-cross-fade image</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( | 7 background-image: -webkit-cross-fade( |
8 url("../../svg/css/resources/fragment-identifiers.svg#green"), | 8 url("../svg/css/resources/fragment-identifiers.svg#green"), |
9 url("../../svg/css/resources/fragment-identifiers.svg#red"), 0); | 9 url("../svg/css/resources/fragment-identifiers.svg#red"), 0); |
10 } | 10 } |
11 #tst2 { | 11 #tst2 { |
12 width: 100px; | 12 width: 100px; |
13 height: 100px; | 13 height: 100px; |
14 background-image: -webkit-cross-fade( | 14 background-image: -webkit-cross-fade( |
15 url("../../svg/css/resources/fragment-identifiers.svg#red"), | 15 url("../svg/css/resources/fragment-identifiers.svg#red"), |
16 url("../../svg/css/resources/fragment-identifiers.svg#green"), 1); | 16 url("../svg/css/resources/fragment-identifiers.svg#green"), 1); |
17 } | 17 } |
18 </style> | 18 </style> |
19 <div id=tst1></div> | 19 <div id=tst1></div> |
20 <p>There should be one green square above and one green square below. | 20 <p>There should be one green square above and one green square below. |
21 <div id=tst2></div> | 21 <div id=tst2></div> |
OLD | NEW |