2d.layer.anisotropic-blur.isotropic.tentative-expected.html (689B)
1 <!DOCTYPE html> 2 <!-- DO NOT EDIT! This test has been generated by /html/canvas/tools/gentest.py. --> 3 <meta charset="UTF-8"> 4 <title>Canvas test: 2d.layer.anisotropic-blur.isotropic.tentative</title> 5 <h1>2d.layer.anisotropic-blur.isotropic.tentative</h1> 6 <p class="desc">Checks that layers allow gaussian blur with separate X and Y components.</p> 7 8 <svg xmlns="http://www.w3.org/2000/svg" 9 width="200" height="200" 10 color-interpolation-filters="sRGB"> 11 <filter id="filter" x="-100%" y="-100%" width="300%" height="300%"> 12 <feGaussianBlur stdDeviation="4 4" /> 13 </filter> 14 <g filter="url(#filter)"> 15 <rect x="50" y="50" width="100" height="100" fill="teal"/> 16 </g> 17 </svg>