The bug is only on IE10 and IE11, when then animation start, a mouseLeave is triggered directly.
If i don't use animate it's working "fine", but there's no animation.
If i don't clip an image, it's also working fine.
It's working fine on IE9, lastest Safari, Firefox and Chrome.
I got first the same issue with the following library : https://github.com/wout/svg.js
var paper = Snap(currentWidth, currentHeight).appendTo(myDocument));
var img = paper.image($model.path+'assets/images/ui/right_layer.png');
var circle = paper.circle(300, 300, 100).attr({
fill: '#fff'
});;
var masked = img.attr({
clipPath: circle
});
img.mouseover(function(){
circle.animate({r: 50}, 1000);
})
img.mouseout(function(){
circle.animate({r: 100}, 1000);
})