mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-03 19:05:35 +00:00
21 lines
386 B
XML
21 lines
386 B
XML
|
<svg width='100%' height='100%'
|
||
|
xmlns='http://www.w3.org/2000/svg'
|
||
|
xmlns:html="http://www.w3.org/1999/xhtml"
|
||
|
onload='boom()'>
|
||
|
|
||
|
<html:script>
|
||
|
|
||
|
function boom()
|
||
|
{
|
||
|
try {
|
||
|
document.getElementById("path").pathSegList.getItem(-10000000);
|
||
|
} catch(e) {
|
||
|
}
|
||
|
}
|
||
|
|
||
|
</html:script>
|
||
|
|
||
|
<path id='path' d='M300,25 C320,250 375,150 400,150 S400,340 330,350'/>
|
||
|
|
||
|
</svg>
|