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

Unified Diff: LayoutTests/svg/custom/font-face-simple.svg

Issue 656913006: Remove SVG fonts (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Update tests for landing Created 6 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/svg/custom/font-face-simple.svg
diff --git a/LayoutTests/svg/custom/font-face-simple.svg b/LayoutTests/svg/custom/font-face-simple.svg
deleted file mode 100644
index c490622f4b934bee118028c6d893996d65dbbde7..0000000000000000000000000000000000000000
--- a/LayoutTests/svg/custom/font-face-simple.svg
+++ /dev/null
@@ -1,26 +0,0 @@
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<style type="text/css" media="all">
- /* These rules intentionally use 'incorrect' fallback families
- So that if the font-face defined font can't be found the test fails. */
- #csstest {
- font: 2.3cm "csstest", cursive;
- }
- #svgtest {
- font: 2.3cm "svgtest", fantasy;
- }
- @font-face {
- font-family: "csstest";
- src: local("Courier"), local("Courier New");
- }
-</style>
-<defs>
- <font-face id="test" font-family="svgtest">
- <font-face-src>
- <font-face-name name="Courier" />
- </font-face-src>
- </font-face>
-</defs>
-<text id="csstest" x="10" y="3cm">CSS font-face</text>
-<text id="svgtest" x="10" y="6cm">SVG font-face</text>
-<text x="40" y="7cm">The fonts used above should be identical</text>
-</svg>

Powered by Google App Engine
This is Rietveld 408576698