blob: 9d277db6edd8091fbd74eb668b5a67b1551f8531 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<html>
<head>
<script>
window.addEventListener('load', () => {
const element = document.createElementNS('', 't')
document.designMode = 'on'
const range = new Range()
range.selectNodeContents(element)
range.surroundContents(document.documentElement)
document.execCommand('insertHorizontalRule', false, null)
})
</script>
</head>
</html>
|