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

Side by Side Diff: third_party/WebKit/LayoutTests/animations/zoomed-length-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
(Empty)
1 <style>
2 #target {
3 animation: anim 1s -0.25s step-start paused;
4 }
5 @keyframes anim {
6 50% {
7 left: 1000px;
8 }
9 }
10 * { zoom: 6318030279180000000; }
11 </style>
12 <div id=target></div>
13 <p>PASS if no crash.</p>
14 <script>
15 if (window.testRunner) {
16 testRunner.dumpAsText();
17 testRunner.waitUntilDone();
18 }
19 target.addEventListener('animationstart', function() {
20 getComputedStyle(target).left;
21 if (window.testRunner)
22 testRunner.notifyDone();
23 });
24 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698