tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

feGaussianBlur-cap-large-directional-radius-on-software.html (493B)


      1 <!--
      2     Any copyright is dedicated to the Public Domain.
      3     http://creativecommons.org/publicdomain/zero/1.0/
      4 -->
      5 <svg xmlns="http://www.w3.org/2000/svg">
      6  <filter id="blur">
      7    <!--
      8      When rendering in software, Firefox should cap large blur radii to a
      9      smaller value in order to keep performance acceptable.
     10    -->
     11    <feGaussianBlur stdDeviation="1000000 0"/>
     12  </filter>
     13  <g filter="url(#blur)">
     14    <rect x="0" y="0" width="100" height="100" fill="#0f0"/>
     15  </g>
     16 </svg>