blob: 2f8f8ea5ab2a795f945d00edbbe275aa716ddb96 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE html>
<html>
<head>
<script>
window.addEventListener('load', () => {
document.execCommand('selectAll', false, null)
document.execCommand('formatBlock', false, 'h1')
})
</script>
</head>
<body>
<main contenteditable='true'>
<li></li>
<ol contenteditable='false'>
</ol>
</main>
</body>
</html>
|