summaryrefslogtreecommitdiff
path: root/rsvg/tests/fixtures/reftests/svg1.1/filters-overview-01-b.svg
blob: c5b9621c69dcff5d203902bde2919dceee8bf161 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<svg version="1.1" baseProfile="basic" id="svg-root"
  width="100%" height="100%" viewBox="0 0 480 360"
  xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
  <!--======================================================================-->
  <!--=  SVG 1.1 2nd Edition Test Case                                     =-->
  <!--======================================================================-->
  <!--=  Copyright 2009 World Wide Web Consortium, (Massachusetts          =-->
  <!--=  Institute of Technology, European Research Consortium for         =-->
  <!--=  Informatics and Mathematics (ERCIM), Keio University).            =-->
  <!--=  All Rights Reserved.                                              =-->
  <!--=  See http://www.w3.org/Consortium/Legal/.                          =-->
  <!--======================================================================-->
  <d:SVGTestCase xmlns:d="http://www.w3.org/2000/02/svg/testsuite/description/"
    template-version="1.4" reviewer="CL" author="BB" status="accepted"
    version="$Revision: 1.8 $" testname="$RCSfile: filters-overview-01-b.svg,v $">
    <d:testDescription xmlns="http://www.w3.org/1999/xhtml" href="http://www.w3.org/TR/SVG11/filters.html#FilterPrimitivesOverview">
      <p>The purpose of this file is to test the 'in' attribute on filter primitives.</p>
    </d:testDescription>
    <d:operatorScript xmlns="http://www.w3.org/1999/xhtml">
      <p>
        Run the test. No interaction required.
      </p>
    </d:operatorScript>
    <d:passCriteria xmlns="http://www.w3.org/1999/xhtml">
      <p>
        To pass this test, the UA must render all 6 cases (SourceGraphic, SourceAlpha, BackgroundImage, BackgroundAlpha, FillPaint, StrokePaint) correctly.
      </p>
      <ol>
        <li>The result for in="SourceGraphic" is a non blurred vertical rectangle (green with dashed stroke) overlayed with three blurred circles (red/green/blue with dashed stroke).</li>
        <li>The result for in="SourceAlpha" is a non blurred vertical rectangle (green with dashed stroke) overlayed with three blurred circles (dark gray with dashed stroke).</li>
        <li>The result for in="BackgroundImage" is a blurred vertical rectangle (green with dashed stroke).</li>
        <li>The result for in="BackgroundAlpha" is blurred vertical rectangle (dark gray with dashed stroke).</li>
        <li>The results for in="FillPaint" and in="StrokePaint" are the same.  They consists of a non blurred vertical rectangle (green with dashed stroke) overlayed with a blue rectangle with blurred edges.</li>
        <li>The size of the blue rectangles are bigger than the blurred circles.</li>
      </ol>
    </d:passCriteria>
  </d:SVGTestCase>
  <title id="test-title">$RCSfile: filters-overview-01-b.svg,v $</title>
  <defs>
    <font-face font-family="SVGFreeSansASCII" unicode-range="U+0-7F">
      <font-face-src>
        <font-face-uri xlink:href="../resources/SVGFreeSans.svg#ascii"/>
      </font-face-src>
    </font-face>
  </defs>
  <g id="test-body-content" font-family="SVGFreeSansASCII,sans-serif" font-size="18">
    <defs>
      <linearGradient id="grad1" gradientUnits="objectBoundingBox" x1="50%" y1="-3%" x2="50%" y2="106%">
        <stop offset="0.00" stop-color="#0000ff"/>
        <stop offset="0.33" stop-color="#ffffff"/>
        <stop offset="0.67" stop-color="#ff0000"/>
        <stop offset="1.00" stop-color="#ffff00"/>
      </linearGradient>

      <filter id="GaussianBlur1" filterUnits="objectBoundingBox" x="-20%" y="-20%" width="140%" height="140%">
        <feGaussianBlur in="SourceAlpha" stdDeviation="2"/>
      </filter>

      <filter id="GaussianBlur2" filterUnits="objectBoundingBox" x="-20%" y="-20%" width="140%" height="140%">
        <feGaussianBlur in="SourceGraphic" stdDeviation="2"/>
      </filter>

      <filter id="GaussianBlur3" filterUnits="objectBoundingBox" x="-30%" y="-30%" width="160%" height="160%">
        <feFlood flood-color="white" result="flood"/>
        <feGaussianBlur in="BackgroundAlpha" stdDeviation="2" result="blur"/>
        <feMerge>
          <feMergeNode in="flood"/>
          <feMergeNode in="blur"/>
        </feMerge>
      </filter>

      <filter id="GaussianBlur4" filterUnits="objectBoundingBox" x="-40%" y="-40%" width="180%" height="180%">
        <feFlood flood-color="white" result="flood"/>
        <feGaussianBlur in="BackgroundImage" stdDeviation="2" result="blur"/>
        <feMerge>
          <feMergeNode in="flood"/>
          <feMergeNode in="blur"/>
        </feMerge>
      </filter>

      <filter id="GaussianBlur5" filterUnits="objectBoundingBox" x="-20%" y="-20%" width="140%" height="140%">
        <feGaussianBlur in="StrokePaint" stdDeviation="5"/>
      </filter>

      <filter id="GaussianBlur6" filterUnits="objectBoundingBox" x="-20%" y="-20%" width="140%" height="140%">
        <feGaussianBlur in="FillPaint" stdDeviation="5"/>
      </filter>
    </defs>

    <g enable-background="new" stroke-dasharray="25 5" stroke="black" stroke-width="3" font-size="14" fill="black">

      <rect x="90" y="50" width="16" height="95" fill="green"/>
      <g fill-opacity="0.6" stroke="black" stroke-width="3" filter="url(#GaussianBlur1)">
        <circle cx="098" cy="085" r="25" fill="red"/>
        <circle cx="080" cy="110" r="25" fill="blue"/>
        <circle cx="116" cy="110" r="25" fill="green"/>
      </g>
      <text x="98" y="160" stroke="none" text-anchor="middle">SourceAlpha</text>

      <desc> =========================================================================================== </desc>

      <rect x="90" y="185" width="16" height="95" fill="green"/>
      <g fill-opacity="0.6" stroke="black" stroke-width="3" filter="url(#GaussianBlur2)">
        <circle cx="098" cy="220" r="25" fill="red"/>
        <circle cx="080" cy="245" r="25" fill="blue"/>
        <circle cx="116" cy="245" r="25" fill="green"/>
      </g>
      <text x="98" y="295" stroke="none" text-anchor="middle">SourceGraphic</text>

      <desc> =========================================================================================== </desc>

      <rect x="230" y="50" width="16" height="95" fill="green"/>
      <g fill-opacity="0.6" stroke="black" stroke-width="3" filter="url(#GaussianBlur3)">
        <circle cx="238" cy="085" r="25" fill="red"/>
        <circle cx="220" cy="110" r="25" fill="blue"/>
        <circle cx="256" cy="110" r="25" fill="green"/>
      </g>
      <text x="238" y="160" stroke="none" text-anchor="middle">BackgroundAlpha</text>

      <desc> =========================================================================================== </desc>

      <rect x="230" y="185" width="16" height="95" fill="green"/>
      <g fill-opacity="0.6" stroke="black" stroke-width="3" filter="url(#GaussianBlur4)">
        <circle cx="238" cy="220" r="25" fill="red"/>
        <circle cx="220" cy="245" r="25" fill="blue"/>
        <circle cx="256" cy="245" r="25" fill="green"/>
      </g>
      <text x="238" y="295" stroke="none" text-anchor="middle">BackgroundImage</text>

      <desc> =========================================================================================== </desc>

      <rect x="370" y="50" width="16" height="95" fill="green"/>
      <g id='g' stroke-opacity="0.6" stroke="blue" stroke-width="3" filter="url(#GaussianBlur5)">
        <circle cx="378" cy="085" r="25" fill="red"/>
        <circle cx="360" cy="110" r="25" fill="blue"/>
        <circle cx="396" cy="110" r="25" fill="green"/>
      </g>
      <text x="378" y="160" stroke="none" text-anchor="middle">FillPaint</text>

      <desc> =========================================================================================== </desc>

      <rect x="370" y="185" width="16" height="95" fill="green"/>
      <g fill-opacity="0.6" fill="blue" stroke="black" stroke-width="3" filter="url(#GaussianBlur6)">
        <circle cx="378" cy="220" r="25"/>
        <circle cx="360" cy="245" r="25"/>
        <circle cx="396" cy="245" r="25"/>
      </g>
      <text x="378" y="295" stroke="none" text-anchor="middle">StrokePaint</text>

    </g>

    <text x="240" y="30" font-size="20" text-anchor="middle">Filter input test</text>

  </g>
  <g font-family="SVGFreeSansASCII,sans-serif" font-size="32">
    <text id="revision" x="10" y="340" stroke="none" fill="black">$Revision: 1.8 $</text>
  </g>
  <rect id="test-frame" x="1" y="1" width="478" height="358" fill="none" stroke="#000000"/>
  <!-- comment out this watermark once the test is approved -->
  <!--<g id="draft-watermark">
    <rect x="1" y="1" width="478" height="20" fill="red" stroke="black" stroke-width="1"/>
    <text font-family="SVGFreeSansASCII,sans-serif" font-weight="bold" font-size="20" x="240"
      text-anchor="middle" y="18" stroke-width="0.5" stroke="black" fill="white">DRAFT</text>
  </g>-->
</svg>