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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 </script> | 71 </script> |
72 </head> | 72 </head> |
73 <body> | 73 <body> |
74 <p>Tests that the start event is fired at the correct time with different star
t delays.</p> | 74 <p>Tests that the start event is fired at the correct time with different star
t delays.</p> |
75 <div class="target" id="negative-delay"></div> | 75 <div class="target" id="negative-delay"></div> |
76 <div class="target" id="zero-delay"></div> | 76 <div class="target" id="zero-delay"></div> |
77 <div class="target" id="positive-delay"></div> | 77 <div class="target" id="positive-delay"></div> |
78 <div id="result"></div> | 78 <div id="result"></div> |
79 </body> | 79 </body> |
80 </html> | 80 </html> |
OLD | NEW |