summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/filters/feComponentTransfer-04.svg
blob: bc470d5f303a70023095245bf5b7ce348b81a808 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!--
     Any copyright is dedicated to the Public Domain.
     http://creativecommons.org/publicdomain/zero/1.0/
-->
<svg xmlns="http://www.w3.org/2000/svg">
  <title>Testcase for feComponentTransfer with single discrete value</title>
  <!-- From https://bugzilla.mozilla.org/show_bug.cgi?id=845985 -->
  <defs>
    <filter id="f1" filterUnits="objectBoundingBox" primitiveUnits="objectBoundingBox"
           x="0" y="0" width="100%" height="100%">
      <feComponentTransfer x="0" y="0" width="100%" height="100%"
        in="SourceAlpha" style="color-interpolation-filters:sRGB">
        <feFuncG type="discrete" tableValues="1" />
      </feComponentTransfer>
    </filter>
  </defs>
  <rect x="0" y="0" width="100%" height="100%" fill="red" filter="url(#f1)"/>

</svg>