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

Side by Side Diff: third_party/WebKit/LayoutTests/animations/keyframe-timing-function-unset-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 <!doctype html>
2
3 <style>
4 @keyframes anim {
5 from { animation-timing-function: unset; }
6 50% { animation-timing-function: inherit; }
7 to { animation-timing-function: initial; }
8 }
9 </style>
10
11 <div style="animation: anim 10s">This test passes if it doesn't crash</div>
12
13 <script>
14 if (window.testRunner)
15 testRunner.dumpAsText();
16 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698