OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <style> | 4 <style> |
5 #container { | 5 #container { |
6 -webkit-transform: translateZ(0px); | 6 -webkit-transform: translateZ(0px); |
7 -webkit-perspective: 400; | 7 -webkit-perspective: 400; |
8 } | 8 } |
9 | 9 |
10 #revealed { | 10 #revealed { |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 </head> | 74 </head> |
75 <body onload="startTest()"> | 75 <body onload="startTest()"> |
76 <!-- Test for DRT pauseAnimationAtTimeOnElementWithId() API on animations with
multiple keyframes --> | 76 <!-- Test for DRT pauseAnimationAtTimeOnElementWithId() API on animations with
multiple keyframes --> |
77 <div id="container"> | 77 <div id="container"> |
78 <div id="revealed"></div> | 78 <div id="revealed"></div> |
79 <div id="animated"></div> | 79 <div id="animated"></div> |
80 </div> | 80 </div> |
81 <div id="result"></div> | 81 <div id="result"></div> |
82 </body> | 82 </body> |
83 </html> | 83 </html> |
OLD | NEW |