frontend/.pnpm-store/v3/files/2b/497c39111d39589439ff32d76ea1108a376dda585f3b371473583c89605df905c4d95c2e3f2b7a7b7a96ff57cab6fc672689810c5e2ae129fcfade3e05eab5

14 lines
478 B
Plaintext

// Detect support for svg filters - http://www.w3.org/TR/SVG11/filters.html.
// Should fail in Safari: http://stackoverflow.com/questions/9739955/feature-detecting-support-for-svg-filters.
// detect by erik dahlstrom
Modernizr.addTest('svgfilters', function(){
var result = false;
try {
result = typeof SVGFEColorMatrixElement !== undefined &&
SVGFEColorMatrixElement.SVG_FECOLORMATRIX_TYPE_SATURATE == 2;
}
catch(e) {}
return result;
});