smil.js 489 B

12345678910111213141516171819
  1. /*!
  2. {
  3. "name": "SVG SMIL animation",
  4. "property": "smil",
  5. "caniuse": "svg-smil",
  6. "tags": ["svg"],
  7. "notes": [{
  8. "name": "W3C Spec",
  9. "href": "https://www.w3.org/AudioVideo/"
  10. }]
  11. }
  12. !*/
  13. define(['Modernizr', 'toStringFn'], function(Modernizr, toStringFn) {
  14. // SVG SMIL animation
  15. Modernizr.addTest('smil', function() {
  16. return !!document.createElementNS &&
  17. /SVGAnimate/.test(toStringFn.call(document.createElementNS('http://www.w3.org/2000/svg', 'animate')));
  18. });
  19. });