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

Unified Diff: LayoutTests/svg/W3C-SVG-1.1/fonts-glyph-03-t.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/W3C-SVG-1.1/fonts-glyph-03-t.svg
diff --git a/LayoutTests/svg/W3C-SVG-1.1/fonts-glyph-03-t.svg b/LayoutTests/svg/W3C-SVG-1.1/fonts-glyph-03-t.svg
deleted file mode 100644
index 0c9c84ab322dc0137cde819e2ecde99b3709fe74..0000000000000000000000000000000000000000
--- a/LayoutTests/svg/W3C-SVG-1.1/fonts-glyph-03-t.svg
+++ /dev/null
@@ -1,50 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!-- =====================================================================-->
-<!-- fonts-glyph-03-t.svg -->
-<!-- -->
-<!-- Test on the lang attribute. Validate that if the lang attribute is -->
-<!-- set to a value that does not match the specification's matching -->
-<!-- criteria, then the glyph will not be used. -->
-<!-- -->
-<!-- Author : craign@cisra.canon.com.au --><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
-
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" baseProfile="tiny" id="svg-root" width="100%" height="100%" viewBox="0 0 480 360">
- <SVGTestCase xmlns:testcase="http://www.w3.org/2000/02/svg/testsuite/description/" xmlns="http://www.w3.org/2000/02/svg/testsuite/description/" reviewer="CL" owner="CN" desc="Test on the lang attribute" status="accepted" version="$Revision: 1.10 $" testname="$RCSfile: fonts-glyph-03-t.svg,v $">
- <OperatorScript>
- <Paragraph>
- This files tests the lang attribute support of the glyph
- element. The test should produce an upward-triangle for
- the first (en) test element and a square for the second (fr)
- and third (fr-ca) text element. In the third case, a glyph for
- fr is also suitable for a more specific language text fr-ca.
- In the fourth case, no suitable language specific or general
- glyph is provided by the test so a fallback font for the letter
- 'a' should be used. A triangle or square must not be
- displayed in the fourth case.
- </Paragraph>
- </OperatorScript>
- </SVGTestCase>
- <g id="test-body-content">
- <defs>
- <font horiz-adv-x="500">
- <font-face font-family="SVGFont" units-per-em="1000" ascent="800" descent="200" alphabetic="200"/>
- <missing-glyph horiz-adv-x="500" d="M0 0L500 0L500 1000L0 1000M50 50L50 950L450 950L450 50Z"/>
- <glyph unicode=" " glyph-name="space"/>
- <glyph unicode="a" glyph-name="upward-triangle" lang="en" d="M0 0L500 0L250 900Z"/>
- <glyph unicode="a" glyph-name="square" lang="fr" d="M0 250L500 250L500 750L0 750Z"/>
- </font>
- </defs>
- <g font-family="SVGFont" font-size="50">
- <!-- Should produce an upward pointing triangle -->
- <text x="50" y="50" xml:lang="en">a</text>
- <!-- Should produce a square -->
- <text x="50" y="120" xml:lang="fr">a</text>
- <!-- Should also produce a square -->
- <text x="50" y="190" xml:lang="fr-ca">a</text>
- <!-- Should fall back to another font -->
- <text x="50" y="260" xml:lang="de">a</text>
- </g>
- </g>
- <text id="revision" x="10" y="340" font-size="40" stroke="none" fill="black">$Revision: 1.10 $</text>
- <rect id="test-frame" x="1" y="1" width="478" height="358" fill="none" stroke="#000000"/>
-</svg>

Powered by Google App Engine
This is Rietveld 408576698