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

<filter id="f1" filterUnits="objectBoundingBox" primitiveUnits="objectBoundingBox" 
         x="0%" y="0%" width="100%" height="100%">
  <feColorMatrix type="matrix" values="0 1 0 0 0   0 0 1 0 0   1 0 0 0 0   0 0 0 0.5 0"
   x="10%" y="10%" width="80%" height="80%" style="color-interpolation-filters:sRGB"/>
</filter>
<rect x="0" y="0" width="100" height="100" fill="#123456" filter="url(#f1)"/>

</svg>