Sha256: ccc11430a073d60e887d4956ffbc03d5fef678537f9a2ac72d3de396181266b0
Contents?: true
Size: 478 Bytes
Versions: 144
Compression:
Stored size: 478 Bytes
Contents
// 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; });
Version data entries
144 entries across 144 versions & 7 rubygems