UNPKG

can

Version:

MIT-licensed, client-side, JavaScript framework that makes building rich web applications easy.

14 lines (12 loc) 478 B
// 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; });