mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
20 lines
599 B
XML
20 lines
599 B
XML
|
<svg xmlns="http://www.w3.org/2000/svg"
|
||
|
class="reftest-wait"
|
||
|
onload="go()">
|
||
|
<script type="text/javascript">
|
||
|
function go() {
|
||
|
// Check that dynamic end times are preserved during a backwards seek
|
||
|
var svg = document.documentElement;
|
||
|
svg.pauseAnimations();
|
||
|
svg.setCurrentTime(3);
|
||
|
document.getElementById('a').endElement();
|
||
|
svg.setCurrentTime(4);
|
||
|
svg.setCurrentTime(3);
|
||
|
svg.removeAttribute("class");
|
||
|
}
|
||
|
</script>
|
||
|
<rect x="15" y="15" width="200" height="200" fill="blue">
|
||
|
<set attributeName="x" to="100" begin="2s" dur="2s" id="a"/>
|
||
|
</rect>
|
||
|
</svg>
|