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

Side by Side Diff: third_party/WebKit/LayoutTests/animations/stability/keyframe-timing-function-unset-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 <!doctype html> 1 <!doctype html>
2 2
3 <style> 3 <style>
4 @keyframes anim { 4 @keyframes anim {
5 from { animation-timing-function: unset; } 5 from { animation-timing-function: unset; }
6 50% { animation-timing-function: inherit; } 6 50% { animation-timing-function: inherit; }
7 to { animation-timing-function: initial; } 7 to { animation-timing-function: initial; }
8 } 8 }
9 </style> 9 </style>
10 10
11 <div style="animation: anim 10s">This test passes if it doesn't crash</div> 11 <div style="animation: anim 10s">This test passes if it doesn't crash</div>
12 12
13 <script> 13 <script>
14 if (window.testRunner) 14 if (window.testRunner)
15 testRunner.dumpAsText(); 15 testRunner.dumpAsText();
16 </script> 16 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698