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

Side by Side Diff: third_party/WebKit/LayoutTests/animations/stability/keyframeeffect-no-target-crash.html

Issue 2966953002: Move animations crash tests to subdirectory (Closed)
Patch Set: Rename crash-tests/ to stability/ 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 <div id="target">This test passes if it does not crash.</div> 1 <div id="target">This test passes if it does not crash.</div>
2 <script> 2 <script>
3 let effect = new KeyframeEffect(null, null, {duration: 1000}); 3 let effect = new KeyframeEffect(null, null, {duration: 1000});
4 let animation = new Animation(effect); 4 let animation = new Animation(effect);
5 5
6 if (window.testRunner) { 6 if (window.testRunner) {
7 testRunner.waitUntilDone(); 7 testRunner.waitUntilDone();
8 testRunner.dumpAsText(); 8 testRunner.dumpAsText();
9 requestAnimationFrame(function() { 9 requestAnimationFrame(function() {
10 testRunner.notifyDone(); 10 testRunner.notifyDone();
11 }); 11 });
12 } 12 }
13 </script> 13 </script>
14 <style> 14 <style>
15 @keyframes frame { } 15 @keyframes frame { }
16 </style> 16 </style>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698