summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/filters/feDisplacementMap-scale-01.svg
blob: 0b2231e974b9376b321226346db3b4bbffb5fbf5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!--
     Any copyright is dedicated to the Public Domain.
     http://creativecommons.org/publicdomain/zero/1.0/
-->
<svg xmlns="http://www.w3.org/2000/svg">
  <title>Test that directionless filter primitive attributes are resolved to user units correctly</title>
  <!-- https://bugzilla.mozilla.org/show_bug.cgi?id=619967 -->
  <filter id="f" filterUnits="userSpaceOnUse" x="0" y="0" width="400" height="200" color-interpolation-filters="sRGB">
    <feFlood flood-color="#800" result="map"/>
    <feDisplacementMap in="SourceGraphic" in2="map" xChannelSelector="R" yChannelSelector="G" scale="100"/>
  </filter>
  <rect width="100%" height="100%" fill="lime"/>
  <rect y="82" width="300" height="8" fill="red"/>
  <rect width="400" height="200" fill="lime" filter="url(#f)"/>
</svg>