chromium/third_party/blink/web_tests/svg/filters/feDropShadow-negative-deviation-expected.svg

<?xml version="1.0" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.1">
  <defs>
    <filter id="f1">
      <feDropShadow stdDeviation="0"/>
    </filter>
    <filter id="f2">
      <feDropShadow stdDeviation="0 0"/>
    </filter>
    <filter id="f3">
      <feDropShadow stdDeviation="1 0"/>
    </filter>
    <filter id="f4">
      <feDropShadow stdDeviation="0 1"/>
    </filter>
  </defs>
  <rect x="50" y="20" width="10" height="10" fill="green" filter="url(#f1)"/>
  <rect x="50" y="40" width="10" height="10" fill="green" filter="url(#f2)"/>
  <rect x="50" y="60" width="10" height="10" fill="green" filter="url(#f3)"/>
  <rect x="50" y="80" width="10" height="10" fill="green" filter="url(#f4)"/>
</svg>