summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/filters/feConvolveMatrix-2.svg
blob: a804320863ee3fa3a21d1b80bb11bb2bc93d7ad5 (plain)
1
2
3
4
5
6
7
8
9
10
11
<svg xmlns="http://www.w3.org/2000/svg" width="500" height="500">

<filter id="f1" filterUnits="userSpaceOnUse" primitiveUnits="userSpaceOnUse">
  <feConvolveMatrix style="color-interpolation-filters:sRGB"
   order="3" kernelMatrix="0 1 0   1 -4 1   0 1 0" in="SourceGraphic"/>
</filter>
<g filter="url(#f1)">
  <rect x="49" y="0" width="2" height="10000" fill="#00ff00"/>
</g>

</svg>