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

Side by Side Diff: third_party/WebKit/LayoutTests/animations/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
(Empty)
1 <div id="target">This test passes if it does not crash.</div>
2 <script>
3 let effect = new KeyframeEffect(null, null, {duration: 1000});
4 let animation = new Animation(effect);
5
6 if (window.testRunner) {
7 testRunner.waitUntilDone();
8 testRunner.dumpAsText();
9 requestAnimationFrame(function() {
10 testRunner.notifyDone();
11 });
12 }
13 </script>
14 <style>
15 @keyframes frame { }
16 </style>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698