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

Side by Side Diff: third_party/WebKit/LayoutTests/animations/font-builder-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 <div id="target">This test passes if it does not crash.</div>
3 <script>
4 target.animate([
5 {fontSize: 'large', fontWeight: 'normal'},
6 {fontSize: 'small', fontWeight: 'bold'},
7 ], 1);
8 if (window.testRunner) {
9 testRunner.dumpAsText();
10 testRunner.waitUntilDone();
11 }
12 requestAnimationFrame(function() {
13 if (window.testRunner) {
14 testRunner.notifyDone();
15 }
16 });
17 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698