blob: c6f1d712acf754837fee5d9ecb358d53f292a4e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<script>
function go() {
a.setAttribute("contenteditable", "true");
b.addEventListener("DOMNodeRemoved", eh);
b.appendChild(c);
}
function eh() {
document.body.appendChild(b);
document.execCommand("justifyFull", false);
document.execCommand("delete", false);
}
</script>
<body onload=go()>
<li id="a">
A
<pre id="b" contenteditable="true">
<input autofocus="autofocus" id="c">
|