mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-03 14:28:39 +09:00
23 lines
411 B
HTML
23 lines
411 B
HTML
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<script type="text/javascript">
|
||
|
|
|
||
|
|
function boom()
|
||
|
|
{
|
||
|
|
document.addEventListener("DOMNodeInserted", x, false);
|
||
|
|
|
||
|
|
function x()
|
||
|
|
{
|
||
|
|
document.removeEventListener("DOMNodeInserted", x, false);
|
||
|
|
document.execCommand("insertParagraph", false, "");
|
||
|
|
}
|
||
|
|
|
||
|
|
document.execCommand("insertorderedlist", false, "");
|
||
|
|
}
|
||
|
|
|
||
|
|
</script>
|
||
|
|
</head>
|
||
|
|
|
||
|
|
<body contenteditable="true" onload="boom()"></body>
|
||
|
|
|
||
|
|
</html>
|