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

Side by Side Diff: third_party/WebKit/LayoutTests/animations/animation-name-none.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 <html lang="en">
3 <head>
4 <title>Test setting animation name to none</title>
5 <style>
6 @keyframes test {}
7 #test {
8 animation-name: test;
9 }
10 </style>
11 <script>
12 if (window.testRunner)
13 testRunner.dumpAsText();
14 </script>
15 </head>
16 <body>
17 <div id="test">This tests setting animation-name to none, it passes if it does n ot crash.</div>
18 <script>
19 document.querySelector('#test').style.animationName = 'none'
20 </script>
21 </body>
22 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698