summaryrefslogtreecommitdiffstats
path: root/editor/libeditor/crashtests/1624005.html
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>