mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-17 01:43:08 +09:00
16 lines
402 B
HTML
16 lines
402 B
HTML
<html>
|
|
<head>
|
|
<script>
|
|
onload = function() {
|
|
var el;
|
|
while (el = document.querySelector("br")) {
|
|
el.parentNode.removeChild(el);
|
|
}
|
|
focus();
|
|
document.body.focus();
|
|
getSelection().collapse(document.body.firstChild, 0);
|
|
}
|
|
</script>
|
|
</head>
|
|
|
|
<body style="white-space:pre-wrap;" contenteditable></body></html>
|