Wed, 31 Dec 2014 13:27:57 +0100
Ignore runtime configuration files generated during quality assurance.
michael@0 | 1 | <svg xmlns="http://www.w3.org/2000/svg"> |
michael@0 | 2 | |
michael@0 | 3 | <title>Reference for SVG glyphs being painted when painting properties are simple</title> |
michael@0 | 4 | |
michael@0 | 5 | <style> |
michael@0 | 6 | <![CDATA[ |
michael@0 | 7 | @font-face { |
michael@0 | 8 | font-family: "Liberation"; |
michael@0 | 9 | src: url(resources/svg.woff); |
michael@0 | 10 | } |
michael@0 | 11 | text { |
michael@0 | 12 | font-family: Liberation; |
michael@0 | 13 | font-size: 200px; |
michael@0 | 14 | fill: url(#transparent); |
michael@0 | 15 | } |
michael@0 | 16 | ]]> |
michael@0 | 17 | </style> |
michael@0 | 18 | |
michael@0 | 19 | <linearGradient id="transparent"> |
michael@0 | 20 | <stop/> |
michael@0 | 21 | </linearGradient> |
michael@0 | 22 | |
michael@0 | 23 | <!-- The gradient paint server fill is not used by the "L" glyph, |
michael@0 | 24 | but setting it forces the code path that fills and strokes text |
michael@0 | 25 | in the SVG text frame to be chosen. --> |
michael@0 | 26 | <text x="0" y="200">L</text> |
michael@0 | 27 | </svg> |