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

Side by Side Diff: LayoutTests/canvas/philip/tests/2d.text-custom-font-load-crash.html

Issue 217003006: Remove carriage returns from LayoutTests (01) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix caret-and-focus-ring Created 6 years, 9 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 | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <div>Test passes if it does not crash.</div> 2 <div>Test passes if it does not crash.</div>
3 <script src="../tests.js"></script> 3 <script src="../tests.js"></script>
4 <style> 4 <style>
5 @font-face { 5 @font-face {
6 font-family: CanvasTest; 6 font-family: CanvasTest;
7 src: url("does_not_exist.ttf"); 7 src: url("does_not_exist.ttf");
8 } 8 }
9 </style> 9 </style>
10 <applet> 10 <applet>
(...skipping 13 matching lines...) Expand all
24 24
25 setTimeout(wrapFunction(function () { 25 setTimeout(wrapFunction(function () {
26 ctx.fillText('AA', 0, 50); 26 ctx.fillText('AA', 0, 50);
27 27
28 if (window.testRunner) 28 if (window.testRunner)
29 testRunner.notifyDone(); 29 testRunner.notifyDone();
30 }), 500); 30 }), 500);
31 31
32 }); 32 });
33 </script> 33 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698