1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/text-svgglyphs/svg-glyph-objectopacity-ref.svg Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,30 @@ 1.4 +<svg xmlns="http://www.w3.org/2000/svg"> 1.5 + 1.6 + <defs> 1.7 + <linearGradient id="grad" x1="0" y1="0" x2="800" y2="800" gradientUnits="userSpaceOnUse"> 1.8 + <stop stop-color="purple" offset="0%" /> 1.9 + <stop stop-color="lime" offset="100%" /> 1.10 + </linearGradient> 1.11 + <radialGradient id="grad2" cx="250" cy="400" r="400" gradientUnits="userSpaceOnUse"> 1.12 + <stop stop-color="red" offset="0%" /> 1.13 + <stop stop-color="blue" offset="100%" /> 1.14 + </radialGradient> 1.15 + </defs> 1.16 + 1.17 + <rect x="20" y="20" width="160" height="160" stroke-width="10" 1.18 + fill="url(#grad)" stroke="url(#grad2)" 1.19 + fill-opacity="0.5" stroke-opacity="1.0" /> 1.20 + 1.21 + <rect x="320" y="20" width="160" height="160" stroke-width="10" 1.22 + fill="url(#grad)" stroke="url(#grad2)" 1.23 + fill-opacity="1.0" stroke-opacity="0.5" /> 1.24 + 1.25 + <rect x="20" y="320" width="160" height="160" stroke-width="10" 1.26 + fill="url(#grad2)" stroke="url(#grad)" 1.27 + fill-opacity="0.5" stroke-opacity="1.0" /> 1.28 + 1.29 + <rect x="320" y="320" width="160" height="160" stroke-width="10" 1.30 + fill="url(#grad2)" stroke="url(#grad)" 1.31 + fill-opacity="1.0" stroke-opacity="0.5" /> 1.32 + 1.33 +</svg>