Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(881)

Side by Side Diff: third_party/WebKit/LayoutTests/animations/events/delay-start-event.html

Issue 2976603002: Move animation event tests to subdirectory (Closed)
Patch Set: Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698