зеркало из https://github.com/mozilla/gecko-dev.git
18 строки
488 B
HTML
18 строки
488 B
HTML
<html>
|
|
<head>
|
|
<script>
|
|
window.addEventListener('load', () => {
|
|
const range = new Range()
|
|
const fragment = range.cloneContents()
|
|
range.selectNodeContents(document)
|
|
document.designMode = 'on'
|
|
document.replaceChild(fragment, document.documentElement)
|
|
const selection = window.getSelection()
|
|
selection.addRange(range)
|
|
document.execCommand('indent', false, null)
|
|
})
|
|
</script>
|
|
</head>
|
|
</html>
|
|
<!-- COMMENT -->
|