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

Side by Side Diff: LayoutTests/svg/css/font-face-variant-crash.html

Issue 766163002: SVG font support was removed from Blink, deleting SVG test cases (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebasing Test Expecation Created 6 years 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 <html> 1 <html>
2 <style> 2 <style>
3 @font-face { 3 @font-face {
4 font-family: test1; 4 font-family: test1;
5 src: url(../../resources/SpaceOnly.otf); 5 src: url(../../resources/SpaceOnly.otf);
6 } 6 }
pdr. 2014/12/02 18:14:11 This test was only for svg fonts (https://chromium
pdr. 2014/12/02 18:14:12 This test was only for svg fonts (https://chromium
h.joshi 2014/12/03 04:27:44 Okey, this test case is also removed
h.joshi 2014/12/03 04:27:44 Done.
7 @font-face {
8 font-family: test2;
9 src: url(../custom/resources/SVGFreeSans.svg) format('svg');
10 }
11 body { 7 body {
12 font-family: test1,test2; 8 font-family: test1;
13 font-variant: small-caps; 9 font-variant: small-caps;
14 } 10 }
15 </style> 11 </style>
16 <script> 12 <script>
17 if (window.testRunner) 13 if (window.testRunner)
18 testRunner.dumpAsText(); 14 testRunner.dumpAsText();
19 </script> 15 </script>
20 <body> 16 <body>
21 This test passes if it doesn't crash. 17 This test passes if it doesn't crash.
22 </body> 18 </body>
23 </html> 19 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698