mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 931013 - Try to fix intermittent failure of smil/crashtests/690994-1.svg. r=birtles
This commit is contained in:
parent
ae199cb959
commit
66612f1cd3
@ -1,7 +1,10 @@
|
||||
<?xml version="1.0"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" class="reftest-wait">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" class="reftest-wait" onload="go()">
|
||||
<script>
|
||||
<![CDATA[
|
||||
function go() {
|
||||
document.documentElement.setCurrentTime(100);
|
||||
}
|
||||
function boom()
|
||||
{
|
||||
document.documentElement.removeChild(document.getElementById("a"));
|
||||
@ -9,6 +12,6 @@ function boom()
|
||||
}
|
||||
]]>
|
||||
</script>
|
||||
<animate id="a" begin="a.end; -0.1s" end="a.begin+0.2s" onend="boom()"/>
|
||||
<animate id="a" begin="a.end; -0.1s" end="a.begin+0.2s"/>
|
||||
<animate id="a" begin="a.end; 99.9s" end="a.begin+0.2s" onend="boom()"/>
|
||||
<animate id="a" begin="a.end; 99.9s" end="a.begin+0.2s"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 398 B After Width: | Height: | Size: 478 B |
Loading…
Reference in New Issue
Block a user