1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/svg/use-02-extref-resource.svg Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,29 @@ 1.4 +<?xml version="1.0"?> 1.5 +<svg xmlns="http://www.w3.org/2000/svg"> 1.6 + <g color="ghostwhite"> 1.7 + <defs> 1.8 + <linearGradient id="linearGrad1" gradientUnits="objectBoundingBox" y1="0" x1="0" y2="1" x2="1" > 1.9 + <stop offset="000%" stop-color="orange" /> 1.10 + <stop offset="033%" stop-color="red" /> 1.11 + <stop offset="050%" stop-color="gold" /> 1.12 + <stop offset="066%" stop-color="red" /> 1.13 + <stop offset="100%" stop-color="orange" /> 1.14 + </linearGradient> 1.15 + 1.16 + <radialGradient id="radialGrad1" gradientUnits="objectBoundingBox" cx="0.5" cy="0.5" r="0.5" fx="0.15" fy="0.15" > 1.17 + <stop offset="000%" stop-color="orange" /> 1.18 + <stop offset="033%" stop-color="red" /> 1.19 + <stop offset="050%" stop-color="gold" /> 1.20 + <stop offset="066%" stop-color="red" /> 1.21 + <stop offset="100%" stop-color="orange" /> 1.22 + </radialGradient> 1.23 + </defs> 1.24 + 1.25 + <g> 1.26 + <rect id="rect1" x="0" y="0" width="200" height="125" stroke="none" /> 1.27 + <rect id="rect2" x="200" y="0" width="200" height="125" stroke="none" /> 1.28 + <rect id="rect3" x="0" y="125" width="200" height="125" stroke="none" fill="currentColor"/> 1.29 + <rect id="rect4" x="200" y="125" width="200" height="125" stroke="none" fill="url(#radialGrad1)" /> 1.30 + </g> 1.31 + </g> 1.32 +</svg>