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

Side by Side Diff: third_party/WebKit/LayoutTests/animations/element-animate-float-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 <pre></pre>
2 This test passes if it does not crash.
3 <textarea></textarea>
4 <ul></ul>
5 <embed>
6 <script>
7 $ = document.querySelector.bind(document);
8 $('embed').animate([], 0);
9 $('ul').remove();
10 $('textarea').animate([{float: 'left'}, {float: 'left'}], {duration: 1, fill: 'f orwards'});
11 if (window.testRunner) {
12 testRunner.waitUntilDone();
13 testRunner.dumpAsText();
14 requestAnimationFrame(function() {
15 testRunner.notifyDone();
16 });
17 }
18 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698