blob: 094c7b2e30e8fff6a7ab58cb2e146bfe91d01da1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<script>
document.addEventListener('DOMContentLoaded', () => {
selection = document.getSelection()
element = document.createElementNS('', 'm')
document.documentElement.appendChild(element)
range = new Range()
range.setStartBefore(element)
selection.addRange(range)
document.documentElement.contentEditable = true
document.execCommand('forwardDelete', false, null)
})
</script>
<iframe class='\'>'>
</iframe>
<!-- COMMENT -->
|