mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-28 03:17:31 +09:00
11 lines
277 B
XML
11 lines
277 B
XML
|
|
<svg xmlns="http://www.w3.org/2000/svg">
|
||
|
|
<path/>
|
||
|
|
|
||
|
|
<script xmlns="http://www.w3.org/1999/xhtml"><![CDATA[
|
||
|
|
var x=document.getElementsByTagName('path')[0];
|
||
|
|
var y = x.pathSegList;
|
||
|
|
var z = x.createSVGPathSegMovetoRel(0,0);
|
||
|
|
y.appendItem(z,0);
|
||
|
|
y.replaceItem(z, 0);
|
||
|
|
]]></script>
|
||
|
|
</svg>
|