-
-
Notifications
You must be signed in to change notification settings - Fork 80
Description
Zen Browser currently does not support SVG <filter>
effects, such as <feTurbulence>, <feGaussianBlur>, <feDisplacementMap>
, and similar primitives. These are part of the SVG standard and widely supported by browser engines.
Environment:
Zen Browser version: 1.14.5b (Firefox 140.0.4) (64-bit)
OS: Windows 11
Use Case:
Many web designs and apps rely on these effects for aesthetic detail. Without filter support, visuals degrade or fail entirely.
Example for a filter I found not working:
<svg xmlns="http://www.w3.org/2000/svg" width="100%" class="svg-filter-2"><filter id="round-filter"><feGaussianBlur stdDeviation="36" edgeMode="none" result="feGaussianBlur-36be1703"></feGaussianBlur><feColorMatrix in="feGaussianBlur-36be1703" type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 60 -30"></feColorMatrix></filter></svg>