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

Side by Side Diff: third_party/WebKit/LayoutTests/animations/stability/zero-duration-large-start-delay.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 <style> 2 <style>
3 p { 3 p {
4 animation-name: test; 4 animation-name: test;
5 animation-fill-mode: backwards; 5 animation-fill-mode: backwards;
6 /* Approx 2^54 */ 6 /* Approx 2^54 */
7 animation-delay: 18000000000000000s; 7 animation-delay: 18000000000000000s;
8 } 8 }
9 @keyframes test { 9 @keyframes test {
10 0% { 10 0% {
11 } 11 }
12 } 12 }
13 </style> 13 </style>
14 <script> 14 <script>
15 if (window.testRunner) 15 if (window.testRunner)
16 testRunner.dumpAsText(); 16 testRunner.dumpAsText();
17 </script> 17 </script>
18 <body> 18 <body>
19 <p>This tests an animation with zero duration and a very large start delay. See http:://crbug.com/324323. 19 <p>This tests an animation with zero duration and a very large start delay. See http:://crbug.com/324323.
20 <p>This test passes if it doesn't crash. 20 <p>This test passes if it doesn't crash.
21 <body 21 <body
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698