blob: 45b0e67ed4635afba892e20396afee801486ca4d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<script>
document.addEventListener("DOMContentLoaded", () => {
const output = document.querySelector("output");
const table = document.querySelector("table");
table.addEventListener("DOMSubtreeModified", () => {
document.execCommand("bold");
document.execCommand("hiliteColor", false, "white");
output.appendChild(table);
document.execCommand("forwardDelete");
table.setAttribute("onwebkitsourceclose", "foo()");
document.execCommand("insertText", false, "a");
});
document.execCommand("selectAll");
table.insertRow();
});
</script>
</head>
<body>
<canvas contenteditable>
<output>
<table tabindex="0" autofocus></table>
</output>
</canvas>
</body>
</html>
|