OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <style type="text/css"> | 4 <style type="text/css"> |
5 .target { | 5 .target { |
6 position: relative; | 6 position: relative; |
7 height: 100px; | 7 height: 100px; |
8 width: 100px; | 8 width: 100px; |
9 background-color: red; | 9 background-color: red; |
10 margin-bottom: 10px; | 10 margin-bottom: 10px; |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 </script> | 96 </script> |
97 </head> | 97 </head> |
98 <body onload="go()"> | 98 <body onload="go()"> |
99 <p>Tests that an animation which is initially paused fires its start event as
soon as its delay expires, not when it transitions to the running state.</p> | 99 <p>Tests that an animation which is initially paused fires its start event as
soon as its delay expires, not when it transitions to the running state.</p> |
100 <div class="target" id="animation1"></div> | 100 <div class="target" id="animation1"></div> |
101 <div class="target" id="animation2"></div> | 101 <div class="target" id="animation2"></div> |
102 <div class="target" id="animation3"></div> | 102 <div class="target" id="animation3"></div> |
103 <div id="result"></div> | 103 <div id="result"></div> |
104 </body> | 104 </body> |
105 </html> | 105 </html> |
OLD | NEW |