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

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

Powered by Google App Engine
This is Rietveld 408576698