| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 | 2 |
| 3 <html> | 3 <html> |
| 4 <head> | 4 <head> |
| 5 <style type="text/css"> | 5 <style type="text/css"> |
| 6 .box { | 6 .box { |
| 7 position: relative; | 7 position: relative; |
| 8 height: 25px; | 8 height: 25px; |
| 9 width: 25px; | 9 width: 25px; |
| 10 background-color: blue; | 10 background-color: blue; |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 </script> | 63 </script> |
| 64 </head> | 64 </head> |
| 65 <body> | 65 <body> |
| 66 <p>Tests animation events with a negative delay. | 66 <p>Tests animation events with a negative delay. |
| 67 <div id="animation1" class="box animation"></div> | 67 <div id="animation1" class="box animation"></div> |
| 68 <div id="animation2" class="box"></div> | 68 <div id="animation2" class="box"></div> |
| 69 <div id="animation3" class="box"></div> | 69 <div id="animation3" class="box"></div> |
| 70 <div id="log"></div> | 70 <div id="log"></div> |
| 71 </body> | 71 </body> |
| 72 </html> | 72 </html> |
| OLD | NEW |