<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Basic//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-basic.dtd">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="600" height="400">
<defs>
<pattern id="pattern" patternContentUnits="objectBoundingBox" x="0" y="0" width="10" height="10">
<g transform="scale(0.05 0.2) rotate(3)">
<text y="4.5" font-size="5px"><tspan text-decoration="overline">PASS</tspan></text>
</g>
</pattern>
<pattern id="pattern2" patternContentUnits="objectBoundingBox" x="0" y="0" width="20" height="20">
<g transform="scale(0.05 0.05)">
<text y="12.0" x="1" font-size="10px"><tspan text-decoration="underline"><tspan text-decoration="overline">PASS</tspan></tspan></text>
</g>
</pattern>
</defs>
<rect width="200" height="200" fill="url(#pattern)"/>
<rect x="200" width="200" height="200" fill="url(#pattern2)"/>
<text y="230">This test passes if the words "PASS" appear with an overline at the left, and with an overline and an underline at the right.</text>
</svg>