blob: fd75a30ecaeee02a425382096247db03999b1afa (
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
|
<script>
function onLoad() {
const shadow = document.querySelector("shadow");
// For emulating the traditional behavior, collapse Selection to end of the
// <shadow> which is the deepest last child of the <body>.
getSelection().collapse(shadow, shadow.childNodes.length);
try {
document.querySelector("dd[contenteditable]").addEventListener(
"DOMNodeInserted",
() => {
try {
shadow.replaceWith("1");
} catch(e) {}
}
);
} catch(e) {}
try {
document.execCommand("justifyFull");
} catch(e) {}
}
</script>
<body onload="onLoad();">
<dd contenteditable>
<shadow></body>
|