<ellipse cx="150" cy="75" rx="10" ry="40" fill="blue">
<animate id="A" attributeName="rx" begin="click"
end="A.begin+4"
onbegin="alert('started')" onend="alert('stopped')"
dur="4s" values="10;110;10" repeatCount="indefinite"/>
</ellipse>
上記のコードは、Firefox では期待どおりに機能しますが、Chrome では機能しません。Firefox では、アラートはアニメーションの最初と最後に表示されます。どうすればChromeでそれを達成できますか?