1 <svg xmlns=
"http://www.w3.org/2000/svg">
3 Test that gradients are inherited from the outer object when using
4 the objectFill and objectStroke paint server values in SVG glyphs
7 <style type=
"text/css"><![CDATA[
9 font-family:
"Liberation";
10 src:url(
"resources/svg.woff") format(
"woff");
14 font-family:
"Liberation";
21 <linearGradient id=
"grad" x1=
"0" y1=
"0" x2=
"800" y2=
"800" gradientUnits=
"userSpaceOnUse">
22 <stop stop-color=
"purple" offset=
"0%" />
23 <stop stop-color=
"lime" offset=
"100%" />
25 <radialGradient id=
"grad2" cx=
"250" cy=
"400" r=
"400" gradientUnits=
"userSpaceOnUse">
26 <stop stop-color=
"red" offset=
"0%" />
27 <stop stop-color=
"blue" offset=
"100%" />
32 <text x=
"0" y=
"200" fill=
"url(#grad)" stroke=
"url(#grad2)">N
</text>
33 <text x=
"300" y=
"200" fill=
"url(#grad)" stroke=
"url(#grad2)">O
</text>
34 <text x=
"0" y=
"500" fill=
"url(#grad)" stroke=
"url(#grad2)">P
</text>
35 <text x=
"300" y=
"500" fill=
"url(#grad)" stroke=
"url(#grad2)">Q
</text>