blob: c46b0359e86d4b3d4f0c317260d0ad63d24ec98d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<script>
document.addEventListener("DOMContentLoaded", () => {
const text = document.createTextNode("abc");
document.documentElement.appendChild(text);
const range = new Range();
range.selectNodeContents(text);
document.documentElement.contentEditable = "true";
document.execCommand("insertUnorderedList");
getSelection().addRange(range);
document.execCommand("insertHorizontalRule");
});
</script>
</head>
</html>
|