Bug 1731994: part 4) Declare more methods around `ContentPermissionRequestBase` ...
[gecko.git] / layout / reftests / text-svgglyphs / svg-glyph-objectgradient-ref.svg
blob91ebb683dab2617489ef7c0fe4a37b813f14f2b3
1 <svg xmlns="http://www.w3.org/2000/svg">
3 <defs>
4 <linearGradient id="grad" x1="0" y1="0" x2="800" y2="800" gradientUnits="userSpaceOnUse">
5 <stop stop-color="purple" offset="0%" />
6 <stop stop-color="lime" offset="100%" />
7 </linearGradient>
8 <radialGradient id="grad2" cx="250" cy="400" r="400" gradientUnits="userSpaceOnUse">
9 <stop stop-color="red" offset="0%" />
10 <stop stop-color="blue" offset="100%" />
11 </radialGradient>
12 </defs>
14 <rect x="20" y="20" width="160" height="160" stroke="none"
15 fill="url(#grad)" />
17 <rect x="310" y="10" width="180" height="180" fill="url(#grad)"
18 stroke="none" />
20 <rect x="20" y="320" width="160" height="160" fill="burlywood"
21 stroke="url(#grad2)" stroke-width="10" />
23 <rect x="310" y="310" width="180" height="180" fill="url(#grad2)"
24 stroke="url(#grad)" stroke-width="20" />
25 </svg>