mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-17 18:03:06 +09:00
23 lines
361 B
HTML
23 lines
361 B
HTML
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<style type="text/css">
|
|
|
|
body:first-letter { float: right; }
|
|
|
|
</style>
|
|
|
|
<script type="text/javascript">
|
|
|
|
function boom()
|
|
{
|
|
document.body.removeChild(document.body.firstChild);
|
|
document.body.appendChild(document.createTextNode('x'));
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
|
|
<body onload="boom();">ﺷ
|
|
</body>
|
|
|
|
</html>
|