OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <title>Tests that unprefixed animation events are correctly fired when listene
rs are on both versions.</title> | 4 <title>Tests that unprefixed animation events are correctly fired when listene
rs are on both versions.</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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 boxNode.className = 'animate'; | 80 boxNode.className = 'animate'; |
81 document.body.appendChild(boxNode); | 81 document.body.appendChild(boxNode); |
82 } | 82 } |
83 </script> | 83 </script> |
84 </head> | 84 </head> |
85 <body> | 85 <body> |
86 Tests that unprefixed animation events are correctly fired when listeners are on
both versions. | 86 Tests that unprefixed animation events are correctly fired when listeners are on
both versions. |
87 <pre id="result">FAIL: No animation events received</pre> | 87 <pre id="result">FAIL: No animation events received</pre> |
88 </body> | 88 </body> |
89 </html> | 89 </html> |
OLD | NEW |