mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-05-18 15:41:05 +00:00
20 lines
489 B
JavaScript
20 lines
489 B
JavaScript
/*!
|
|
{
|
|
"name": "SVG SMIL animation",
|
|
"property": "smil",
|
|
"caniuse": "svg-smil",
|
|
"tags": ["svg"],
|
|
"notes": [{
|
|
"name": "W3C Spec",
|
|
"href": "https://www.w3.org/AudioVideo/"
|
|
}]
|
|
}
|
|
!*/
|
|
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')));
|
|
});
|
|
});
|