| 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.</title> | 4 <title>Tests that prefixed animation events are correctly fired.</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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 boxNode.className = 'animate'; | 61 boxNode.className = 'animate'; |
| 62 document.body.appendChild(boxNode); | 62 document.body.appendChild(boxNode); |
| 63 } | 63 } |
| 64 </script> | 64 </script> |
| 65 </head> | 65 </head> |
| 66 <body> | 66 <body> |
| 67 Tests that prefixed animation events are correctly fired. | 67 Tests that prefixed animation events are correctly fired. |
| 68 <pre id="result">FAIL: No animation events received</pre> | 68 <pre id="result">FAIL: No animation events received</pre> |
| 69 </body> | 69 </body> |
| 70 </html> | 70 </html> |
| OLD | NEW |