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

Side by Side Diff: third_party/WebKit/LayoutTests/animations/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
(Empty)
1 <!DOCTYPE html>
2
3 <style>
4 p {
5 transform: rotateX(0deg);
6 animation: 1s test;
7 }
8 @keyframes test {
9 0% {
10 }
11 }
12 </style>
13
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.
16
17 <script>
18 if (window.testRunner)
19 testRunner.dumpAsText();
20 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698