summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/canvas/offscreen/layers/2d.layer.anisotropic-blur.x-only-expected.html
blob: 0b4d269189fe98be074eab864709608b2b89aa17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<!-- DO NOT EDIT! This test has been generated by /html/canvas/tools/gentest.py. -->
<title>Canvas test: 2d.layer.anisotropic-blur.x-only</title>
<h1>2d.layer.anisotropic-blur.x-only</h1>
<p class="desc">Checks that layers allow gaussian blur with separate X and Y components.</p>

<svg xmlns="http://www.w3.org/2000/svg"
      width="200" height="200"
      color-interpolation-filters="sRGB">
  <filter id="filter" x="-100%" y="-100%" width="300%" height="300%">
    <feGaussianBlur stdDeviation="4 0" />
  </filter>
  <g filter="url(#filter)">
    <rect x="50" y="50" width="100" height="100" fill="teal"/>
  </g>
</svg>