I\'m trying to fake SMIL support in IE9 with FakeSmile
I\'m creating the SVG element dynamically, adding a rect element with animate element and calling beginElement
It seems you're setting a property incorrectly:
animation.setAttributeNS(null, 'begin', 'indefinite');
Change the property name to match the value:
animation.setAttributeNS(null, 'repeatCount', 'indefinite');