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

Side by Side Diff: third_party/WebKit/LayoutTests/animations/stability/webkit-origin-dimension-animation-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 <script src="../resources/testharness.js"></script> 1 <script src="../../resources/testharness.js"></script>
2 <script src="../resources/testharnessreport.js"></script> 2 <script src="../../resources/testharnessreport.js"></script>
3 <style> 3 <style>
4 @keyframes test { 4 @keyframes test {
5 to { 5 to {
6 -webkit-perspective-origin-x: 1px; 6 -webkit-perspective-origin-x: 1px;
7 -webkit-perspective-origin-y: 1px; 7 -webkit-perspective-origin-y: 1px;
8 -webkit-transform-origin-x: 1px; 8 -webkit-transform-origin-x: 1px;
9 -webkit-transform-origin-y: 1px; 9 -webkit-transform-origin-y: 1px;
10 -webkit-transform-origin-z: 1px; 10 -webkit-transform-origin-z: 1px;
11 } 11 }
12 } 12 }
13 #target { 13 #target {
14 animation: test 1s; 14 animation: test 1s;
15 } 15 }
16 </style> 16 </style>
17 <div id="target"></div> 17 <div id="target"></div>
18 <script> 18 <script>
19 test(function() { 19 test(function() {
20 getComputedStyle(target); 20 getComputedStyle(target);
21 }, 'This test passes if it does not crash'); 21 }, 'This test passes if it does not crash');
22 </script> 22 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698