зеркало из https://github.com/mozilla/gecko-dev.git
16 строки
362 B
HTML
16 строки
362 B
HTML
<script>
|
|
function go() {
|
|
document.scrollingElement.addEventListener("DOMNodeInserted", () => {
|
|
document.execCommand("selectAll", false);
|
|
document.execCommand("insertOrderedList", false);
|
|
});
|
|
a.appendChild(document.createElement("e"));
|
|
}
|
|
</script>
|
|
<body onload=go()>
|
|
<meter contenteditable="true">
|
|
<dialog>
|
|
<style id="a"></style>
|
|
</dialog>
|
|
</meter>
|