mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
19 lines
310 B
XML
19 lines
310 B
XML
<svg xmlns="http://www.w3.org/2000/svg">
|
|
|
|
<script>
|
|
|
|
function boom()
|
|
{
|
|
var x = document.getElementById("x").firstChild;
|
|
x.data = x.data.slice(1);
|
|
document.caretPositionFromPoint(0, 0);
|
|
}
|
|
|
|
window.addEventListener("load", boom, false);
|
|
|
|
</script>
|
|
|
|
<text><tspan id="x">@ت</tspan></text>
|
|
|
|
</svg>
|