summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/filters/filter-lighting-region.svg
blob: 883b6d805dda7e3b4a914443b30cf5ff5e27ae0b (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
<!--
     Any copyright is dedicated to the Public Domain.
     http://creativecommons.org/publicdomain/zero/1.0/
-->
<svg xmlns="http://www.w3.org/2000/svg" width="600px" height="300px">
  <!-- From https://bugzilla.mozilla.org/show_bug.cgi?id=1203376 -->
  <defs>
    <!-- the filter lights are intentionally chosen to fill the entire area with
         a solid color since we're only testing the extents of the filter region
    -->
    <filter id="diffuse" x="-50%" y="-50%" width="200%" height="200%">
      <!-- gives a black filter region -->
      <feDiffuseLighting lighting-color="black">
        <feDistantLight />
      </feDiffuseLighting>
    </filter>

    <filter id="specular" x="-50%" y="-50%" width="200%" height="200%">
      <!-- gives a white filter region -->
      <feSpecularLighting lighting-color="white" specularConstant="100">
        <feDistantLight elevation="90"/>
      </feSpecularLighting>
    </filter>
  </defs>

  <rect x="100" y="100" width="100" height="100" filter="url(#diffuse)" />

  <rect x="340" y="40" width="220" height="220" fill="grey" />
  <rect x="400" y="100" width="100" height="100" filter="url(#specular)" />
</svg>