mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
18 lines
371 B
XML
18 lines
371 B
XML
|
<svg xmlns="http://www.w3.org/2000/svg" onload="setTimeout(boom, 30);" class="reftest-wait">
|
||
|
|
||
|
<script>
|
||
|
function boom()
|
||
|
{
|
||
|
try {
|
||
|
document.getElementById("path_1").pathSegList.insertItemBefore({}, 0);
|
||
|
} catch(e) {
|
||
|
}
|
||
|
|
||
|
document.documentElement.removeAttribute("class");
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<path id='path_1' d='M300,25 C500,100 575,300 330,350'/>
|
||
|
|
||
|
</svg>
|