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

Side by Side Diff: third_party/WebKit/LayoutTests/animations/stability/empty-keyframes-composited.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 p { 4 p {
5 transform: rotateX(0deg); 5 transform: rotateX(0deg);
6 animation: 1s test; 6 animation: 1s test;
7 } 7 }
8 @keyframes test { 8 @keyframes test {
9 0% { 9 0% {
10 } 10 }
11 } 11 }
12 </style> 12 </style>
13 13
14 <p>Tests an animation where all keyframes are empty, applied to an element which is composited. 14 <p>Tests an animation where all keyframes are empty, applied to an element which is composited.
15 <p>This test passes if it doesn't crash. 15 <p>This test passes if it doesn't crash.
16 16
17 <script> 17 <script>
18 if (window.testRunner) 18 if (window.testRunner)
19 testRunner.dumpAsText(); 19 testRunner.dumpAsText();
20 </script> 20 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698