mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
17 lines
501 B
XML
17 lines
501 B
XML
|
<?xml version="1.0"?>
|
||
|
<svg xmlns="http://www.w3.org/2000/svg"
|
||
|
class="reftest-wait"
|
||
|
onload="go()">
|
||
|
<script>
|
||
|
function go() {
|
||
|
// setCurrentTime to force a sample
|
||
|
document.documentElement.setCurrentTime(2);
|
||
|
document.documentElement.removeAttribute("class");
|
||
|
}
|
||
|
</script>
|
||
|
<rect fill="teal" x="50" y="50" width="20" height="20">
|
||
|
<animateTransform attributeName="transform" type="rotate" by="30"
|
||
|
calcMode="paced" dur="4s"/>
|
||
|
</rect>
|
||
|
</svg>
|