blob: f998150e6c3acf0ac46b749f1ec10e94fcf0d5ab [file] [log] [blame]
<svg onload="loaded()" xmlns="http://www.w3.org/2000/svg">
<rect x="0" y="0" width="50" height="50" fill="red">
<animate id="anim" attributeName="visibility" to="visible" begin="1s" end="2s" />
<set attributeName="fill" to="green" begin="anim.beginEvent" />
</rect>
<script>
if (window.testRunner)
testRunner.waitUntilDone();
function loaded() {
document.documentElement.setCurrentTime(1);
if (window.testRunner)
setTimeout(function() {testRunner.notifyDone();}, 100);
}
</script>
</svg>