blob: 72ec255117b8c84ef8e14b1c4e1a4888f7c15575 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<script>
var count = 0;
function go() {
document.execCommand("delete", false);
}
function eh() {
count++;
if (count >= 3) {
return;
}
window.addEventListener("DOMNodeInserted", eh);
document.execCommand("removeFormat", false);
document.execCommand("insertText", false, "1");
}
</script>
<body onload=go()>
<ol oninput="eh()" contenteditable="true">
<!-- x -->
<s>
<!-- x -->
|