mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-22 04:13:06 +09:00
18 lines
272 B
HTML
18 lines
272 B
HTML
<html>
|
|
<head>
|
|
<script>
|
|
function boom()
|
|
{
|
|
var k = document.getElementById("k");
|
|
k.appendChild(document.createTextNode(" "));
|
|
}
|
|
</script>
|
|
</head>
|
|
|
|
<body onload="boom();">
|
|
|
|
<span><span id="k"><div></div></span><span style="float: right;"></span></span>
|
|
|
|
</body>
|
|
|
|
</html>
|