| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <title>Tests that prefixed animation events are correctly fired when using htm
l event listeners.</title> | 4 <title>Tests that prefixed animation events are correctly fired when using htm
l event listeners.</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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 }, 200); | 53 }, 200); |
| 54 } | 54 } |
| 55 </script> | 55 </script> |
| 56 </head> | 56 </head> |
| 57 <body> | 57 <body> |
| 58 Tests that prefixed animation events are correctly fired when using html event l
isteners. | 58 Tests that prefixed animation events are correctly fired when using html event l
isteners. |
| 59 <pre id="result">FAIL: No animation events received</pre> | 59 <pre id="result">FAIL: No animation events received</pre> |
| 60 <div id="box" onwebkitanimationstart="recordAnimationStart();" onwebkitanimation
end="recordAnimationEnd();" onwebkitanimationiteration="recordAnimationIteration
();" class="animate"></div> | 60 <div id="box" onwebkitanimationstart="recordAnimationStart();" onwebkitanimation
end="recordAnimationEnd();" onwebkitanimationiteration="recordAnimationIteration
();" class="animate"></div> |
| 61 </body> | 61 </body> |
| 62 </html> | 62 </html> |
| OLD | NEW |