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

Side by Side Diff: third_party/WebKit/LayoutTests/animations/empty-keyframe-triggers.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
(Empty)
1 <!doctype html>
2 <script src="../resources/testharness.js"></script>
3 <script src="../resources/testharnessreport.js"></script>
4 <style>
5 @keyframes anim { }
6 #target { animation: anim; }
7 </style>
8 <div id="target"></div>
9 <script>
10 var test1 = async_test('Check whether the animationstart is fired for an empty @keyframe block');
11 target.addEventListener('animationstart', function(event) {
12 test1.done();
13 });
14 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698