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

Side by Side Diff: third_party/WebKit/LayoutTests/animations/font-builder-crash.html

Issue 2093423002: Move web-animations-api tests not being upstreamed (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Undo move of reject-hyphen.html Created 4 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