Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / text / text-decorations-in-scaled-pattern.svg
blob8ec167f26707cb54948ecdb86b3a232f2e03732a
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Basic//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-basic.dtd">
3 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="600" height="400">
4 <defs>
5 <pattern id="pattern" patternContentUnits="objectBoundingBox" x="0" y="0" width="10" height="10">
6 <g transform="scale(0.05 0.2) rotate(3)">
7 <text y="4.5" font-size="5px"><tspan text-decoration="overline">PASS</tspan></text>
8 </g>
9 </pattern>
10 </defs>
11 <rect width="200" height="200" fill="url(#pattern)"/>
12 <text y="230">This test passes if the word "PASS" appears above with a line over it.</text>
13 </svg>