blob: 19c8e56defd2b5ea452a479503f47bf6c9ba7a81 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!DOCTYPE html>
<body "lightyellow" contenteditable="true"="0">
<div>=</div>
<script>
function edit() {
document.execCommand("selectAll");
document.execCommand("InsertHTML",false,"<pre></pre>");
document.execCommand("InsertHTML",false,"<div>i</div>");
document.execCommand("indent");
document.execCommand("selectAll");
}
edit();
</script>
</body>
</html>
|