blob: 696e429e0b46fbb00a3d46dfb3ca7e4e23840d09 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<html>
<head>
<script>
function jsfuzzer () {
window.find('1')
const selection = window.getSelection()
selection.extend(document.getElementById('list_item'))
document.getElementById('list_item').contentEditable = 'true'
document.execCommand('indent', false)
}
</script>
</head>
<body onload=jsfuzzer()>
<li id="list_item">16</li>
</body>
</html>
|