OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <script> | 3 <script> |
4 if (window.testRunner) { | 4 if (window.testRunner) { |
5 testRunner.dumpAsText(); | 5 testRunner.dumpAsText(); |
6 testRunner.waitUntilDone(); | 6 testRunner.waitUntilDone(); |
7 } | 7 } |
8 | 8 |
9 function animationEnded() { | 9 function animationEnded() { |
10 var result = document.getElementById("result"); | 10 var result = document.getElementById("result"); |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 } | 45 } |
46 </style> | 46 </style> |
47 </head> | 47 </head> |
48 | 48 |
49 <body> | 49 <body> |
50 <div id="square" onwebkitanimationend="animationEnded();"></div> | 50 <div id="square" onwebkitanimationend="animationEnded();"></div> |
51 <div id="result"></div> | 51 <div id="result"></div> |
52 </body> | 52 </body> |
53 </html> | 53 </html> |
54 | 54 |
OLD | NEW |