blob: 26b2fee5ffb8f54e11045aa82baa195eaa4524db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<style>
* { display: table-caption }
body { display: contents }
</style>
<script>
function onLoad() {
// For emulating the traditional behavior, collapse Selection to end of the
// text node in the <th> which is the deepest last child of the <body>.
const th = document.querySelector("th");
getSelection().collapse(th.lastChild, th.lastChild.length);
document.execCommand("enableInlineTableEditing");
}
</script>
<body onload="onLoad()">
<table contenteditable>
<th>
</th></table></body>
|