| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <title>Test animations with repeated iterations and short loops</title> | 4 <title>Test animations with repeated iterations and short loops</title> |
| 5 <style> | 5 <style> |
| 6 #box { | 6 #box { |
| 7 position: relative; | 7 position: relative; |
| 8 left: 100px; | 8 left: 100px; |
| 9 top: 10px; | 9 top: 10px; |
| 10 height: 100px; | 10 height: 100px; |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 document.body.appendChild(boxNode); | 39 document.body.appendChild(boxNode); |
| 40 } | 40 } |
| 41 </script> | 41 </script> |
| 42 </head> | 42 </head> |
| 43 <body> | 43 <body> |
| 44 Checks that we still end an animation properly (i.e. fire a animationend | 44 Checks that we still end an animation properly (i.e. fire a animationend |
| 45 event) when using more than one iteration with very short durations. | 45 event) when using more than one iteration with very short durations. |
| 46 <pre id="result">FAIL: no animationend event received</pre> | 46 <pre id="result">FAIL: no animationend event received</pre> |
| 47 </body> | 47 </body> |
| 48 </html> | 48 </html> |
| OLD | NEW |