mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-09 09:58:57 +00:00
24 lines
411 B
HTML
24 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>
|