blob: 71a92817d85d699d9a102d1f1d82626139e730ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<html>
<head>
<script>
window.addEventListener('load', () => {
document.documentElement.contentEditable = true
document.execCommand('indent', false, null)
const selection = document.getSelection()
selection.collapse(document.documentElement, (3474956128 % document.documentElement.childNodes))
document.execCommand('indent', false, null)
document.execCommand('outdent', false, null)
})
</script>
</head>
</html>
|