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

Side by Side Diff: third_party/WebKit/LayoutTests/animations/stability/animation-transition-collision-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 <meta charset="utf-8"> 2 <meta charset="utf-8">
3 <script src="../resources/testharness.js"></script> 3 <script src="../../resources/testharness.js"></script>
4 <script src="../resources/testharnessreport.js"></script> 4 <script src="../../resources/testharnessreport.js"></script>
5 <style> 5 <style>
6 @keyframes test { 6 @keyframes test {
7 from { 7 from {
8 /* These properties have -webkit-* equivalents. */ 8 /* These properties have -webkit-* equivalents. */
9 background-size: 10px 10px; 9 background-size: 10px 10px;
10 box-shadow: 10px 10px green; 10 box-shadow: 10px 10px green;
11 perspective: 10px; 11 perspective: 10px;
12 transform: translate(10px, 10px); 12 transform: translate(10px, 10px);
13 perspective-origin: 10px 10px; 13 perspective-origin: 10px 10px;
14 transform-origin: 10px 10px; 14 transform-origin: 10px 10px;
(...skipping 13 matching lines...) Expand all
28 frameWait--; 28 frameWait--;
29 if (frameWait) { 29 if (frameWait) {
30 requestAnimationFrame(frame); 30 requestAnimationFrame(frame);
31 } else { 31 } else {
32 t.done(); 32 t.done();
33 } 33 }
34 } 34 }
35 requestAnimationFrame(frame); 35 requestAnimationFrame(frame);
36 }, 'Don\'t crash when animating transitioned properties'); 36 }, 'Don\'t crash when animating transitioned properties');
37 </script> 37 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698