зеркало из https://github.com/mozilla/gecko-dev.git
17 строки
406 B
HTML
17 строки
406 B
HTML
<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>
|