OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <style> | 3 <style> |
4 #box { | 4 #box { |
5 position: absolute; | 5 position: absolute; |
6 left: 100px; | 6 left: 100px; |
7 top: 100px; | 7 top: 100px; |
8 height: 100px; | 8 height: 100px; |
9 width: 100px; | 9 width: 100px; |
10 background-color: red; | 10 background-color: red; |
11 -webkit-animation: anim 1s linear infinite; | 11 animation: anim 1s linear infinite; |
12 } | 12 } |
13 #boxStatic { | 13 #boxStatic { |
14 position: absolute; | 14 position: absolute; |
15 left: 100px; | 15 left: 100px; |
16 top: 200px; | 16 top: 200px; |
17 height: 100px; | 17 height: 100px; |
18 width: 100px; | 18 width: 100px; |
19 background-color: red; | 19 background-color: red; |
20 -webkit-mask-image: -webkit-cross-fade(url(resources/stripes-100.png), u
rl(resources/green-100.png), 25%); | 20 -webkit-mask-image: -webkit-cross-fade(url(resources/stripes-100.png), u
rl(resources/green-100.png), 25%); |
21 } | 21 } |
22 @-webkit-keyframes anim { | 22 @keyframes anim { |
23 from { -webkit-mask-image: url(resources/stripes-100.png); } | 23 from { -webkit-mask-image: url(resources/stripes-100.png); } |
24 to { -webkit-mask-image: url(resources/green-100.png); } | 24 to { -webkit-mask-image: url(resources/green-100.png); } |
25 } | 25 } |
26 </style> | 26 </style> |
27 <script src="resources/animation-test-helpers.js" type="text/javascript" chars
et="utf-8"></script> | 27 <script src="resources/animation-test-helpers.js" type="text/javascript" chars
et="utf-8"></script> |
28 <script type="text/javascript" charset="utf-8"> | 28 <script type="text/javascript" charset="utf-8"> |
29 // This test was flaky because it would start before the images were loaded. | 29 // This test was flaky because it would start before the images were loaded. |
30 var imagesLoaded = 0; | 30 var imagesLoaded = 0; |
31 function imageLoaded() { | 31 function imageLoaded() { |
32 ++imagesLoaded; | 32 ++imagesLoaded; |
(...skipping 10 matching lines...) Expand all Loading... |
43 } | 43 } |
44 } | 44 } |
45 </script> | 45 </script> |
46 </head> | 46 </head> |
47 <body> | 47 <body> |
48 <img id="box" src="resources/green-100.png" onLoad="imageLoaded()";/> | 48 <img id="box" src="resources/green-100.png" onLoad="imageLoaded()";/> |
49 <img id="boxStatic" src="resources/stripes-100.png" onLoad="imageLoaded();"/> | 49 <img id="boxStatic" src="resources/stripes-100.png" onLoad="imageLoaded();"/> |
50 <div id="result"></div> | 50 <div id="result"></div> |
51 </body> | 51 </body> |
52 </html> | 52 </html> |
OLD | NEW |