UNPKG

modernizr

Version:

Modernizr is a JavaScript library that detects HTML5 and CSS3 features in the user’s browser.

16 lines (15 loc) 406 B
/*! { "name": "SVG SMIL animation", "property": "smil", "caniuse": "svg-smil", "tags": ["svg"] } !*/ define(['Modernizr', 'toStringFn'], function( Modernizr, toStringFn ) { // SVG SMIL animation Modernizr.addTest('smil', function() { return !!document.createElementNS && /SVGAnimate/.test(toStringFn.call(document.createElementNS('http://www.w3.org/2000/svg', 'animate'))); }); });