blob: 6e915678b6be9f11f0863ae6098267425dacde29 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg xmlns="http://www.w3.org/2000/svg" onload="loaded()">
<rect width="100" height="100" fill="green">
<animate attributeName="width" attributeType="XML" calcMode="discrete" begin="0s; 3s" from="100" to="0" dur="8s"/>
</rect>
<script>
if (window.testRunner)
testRunner.waitUntilDone();
function loaded() {
document.documentElement.setCurrentTime(6.5);
document.documentElement.pauseAnimations();
if (window.testRunner)
testRunner.notifyDone();
}
</script>
</svg>