blob: 81040c91f4ccdb142b7647a2a4c67dbefdf43664 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<script>
function go() {
document.execCommand("justifyFull", false)
document.execCommand("selectAll", false)
window.top.addEventListener("DOMNodeRemoved", eh)
document.execCommand("heading", false, "H1")
}
function eh() {
document.execCommand("insertHTML", false, undefined)
}
</script>
<body onload=go()>
<dd contenteditable="true">A
<!-- A -->
|