| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <script src="../fast/js/resources/js-test-pre.js"></script> | 3 <script src="../fast/js/resources/js-test-pre.js"></script> |
| 4 </head> | 4 </head> |
| 5 <body> | 5 <body> |
| 6 <p id="description"></p> | 6 <p id="description"></p> |
| 7 <div id="console"></div> | 7 <div id="console"></div> |
| 8 <script> | 8 <script> |
| 9 | 9 |
| 10 description("Test dynamic creation of WebKitAnimationEvent."); | 10 description("Test dynamic creation of WebKitAnimationEvent."); |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 | 28 |
| 29 ev = document.createEvent("MouseEvent"); | 29 ev = document.createEvent("MouseEvent"); |
| 30 | 30 |
| 31 shouldBe("typeof(ev)", "'object'"); | 31 shouldBe("typeof(ev)", "'object'"); |
| 32 shouldBe("ev.animationName", "undefined"); | 32 shouldBe("ev.animationName", "undefined"); |
| 33 shouldBe("ev.elapsedTime", "undefined"); | 33 shouldBe("ev.elapsedTime", "undefined"); |
| 34 | 34 |
| 35 debug(""); | 35 debug(""); |
| 36 | 36 |
| 37 </script> | 37 </script> |
| 38 <script src="../fast/js/resources/js-test-post.js"></script> | |
| 39 </body> | 38 </body> |
| 40 </html> | 39 </html> |
| OLD | NEW |