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

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: 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
(Empty)
1 <html>
2 <style>
3 @font-face {
4 font-family: test1;
5 src: url(../../resources/SpaceOnly.otf);
6 }
7 @font-face {
8 font-family: test2;
9 src: url(../custom/resources/SVGFreeSans.svg) format('svg');
10 }
11 body {
12 font-family: test1,test2;
13 font-variant: small-caps;
14 }
15 </style>
16 <script>
17 if (window.testRunner)
18 testRunner.dumpAsText();
19 </script>
20 <body>
21 This test passes if it doesn't crash.
22 </body>
23 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698