mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07: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>
|