mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-23 08:57:34 +09:00
14 lines
251 B
HTML
14 lines
251 B
HTML
<html>
|
|
<head>
|
|
<script>
|
|
function boom()
|
|
{
|
|
var svgText = document.createElementNS("http://www.w3.org/2000/svg", "text");
|
|
svgText.setAttribute("dx", "foo");
|
|
svgText.removeAttribute("dx");
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="boom();">
|
|
</body>
|
|
</html>
|