1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/text-svgglyphs/svg-glyph-objectpattern-ref.svg Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,25 @@ 1.4 +<svg xmlns="http://www.w3.org/2000/svg"> 1.5 + 1.6 + <defs> 1.7 + <pattern id="pat" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"> 1.8 + <rect x="5" y="5" width="30" height="30" stroke="salmon" stroke-width="5" 1.9 + fill="mistyrose" /> 1.10 + </pattern> 1.11 + <pattern id="pat2" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"> 1.12 + <rect x="5" y="5" width="10" height="10" stroke="lavenderblush" stroke-width="2" 1.13 + fill="lemonchiffon" /> 1.14 + </pattern> 1.15 + </defs> 1.16 + 1.17 + <rect x="20" y="20" width="160" height="160" stroke="none" 1.18 + fill="url(#pat)" /> 1.19 + 1.20 + <rect x="310" y="10" width="180" height="180" fill="url(#pat)" 1.21 + stroke="none" /> 1.22 + 1.23 + <rect x="20" y="320" width="160" height="160" fill="burlywood" 1.24 + stroke="url(#pat2)" stroke-width="10" /> 1.25 + 1.26 + <rect x="310" y="310" width="180" height="180" fill="url(#pat2)" 1.27 + stroke="url(#pat)" stroke-width="20" /> 1.28 +</svg>