browsernizr
Version:
Modernizr wrapper for use with browserify
21 lines (19 loc) • 524 B
JavaScript
/*!
{
"name": "SVG SMIL animation",
"property": "smil",
"caniuse": "svg-smil",
"tags": ["svg"],
"notes": [{
"name": "W3C Spec",
"href": "https://www.w3.org/AudioVideo/"
}]
}
!*/
var Modernizr = require('./../../lib/Modernizr.js');
var toStringFn = require('./../../lib/toStringFn.js');
// SVG SMIL animation
Modernizr.addTest('smil', function() {
return !!document.createElementNS &&
/SVGAnimate/.test(toStringFn.call(document.createElementNS('http://www.w3.org/2000/svg', 'animate')));
});