OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <style type="text/css" media="screen"> | 3 <style type="text/css" media="screen"> |
4 #test1 { | 4 #test1 { |
5 width: 20px; | 5 width: 20px; |
6 height: 20px; | 6 height: 20px; |
7 background-color: blue; | 7 background-color: blue; |
8 position: relative; | 8 position: relative; |
9 -webkit-animation-name: anim1; | 9 -webkit-animation-name: anim1; |
10 -webkit-animation-duration: 10s; | 10 -webkit-animation-duration: 10s; |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 shouldBe("test1Style.webkitAnimationTimingFunction", "'linear'"); | 82 shouldBe("test1Style.webkitAnimationTimingFunction", "'linear'"); |
83 shouldBe("test2Style.webkitAnimationTimingFunction", "'linear, ease-in-out'"); | 83 shouldBe("test2Style.webkitAnimationTimingFunction", "'linear, ease-in-out'"); |
84 shouldBe("test3Style.webkitAnimationTimingFunction", "'step-start, step-end, ste
ps(5, end)'"); | 84 shouldBe("test3Style.webkitAnimationTimingFunction", "'step-start, step-end, ste
ps(5, end)'"); |
85 | 85 |
86 shouldBe("test1Style.webkitAnimationDirection", "'normal'"); | 86 shouldBe("test1Style.webkitAnimationDirection", "'normal'"); |
87 shouldBe("test2Style.webkitAnimationDirection", "'normal, alternate'"); | 87 shouldBe("test2Style.webkitAnimationDirection", "'normal, alternate'"); |
88 | 88 |
89 debug(""); | 89 debug(""); |
90 | 90 |
91 </script> | 91 </script> |
92 <script src="../fast/js/resources/js-test-post.js"></script> | |
93 </body> | 92 </body> |
94 </html> | 93 </html> |
OLD | NEW |