<script>
function onLoad() {
const data = document.querySelector("data");
const source = document.querySelector("source");
// For emulating the traditional behavior, collapse Selection to end of the
// <data> which is the deepest last child (and a container) of the <body>.
getSelection().collapse(data, data.childNodes.length); source.appendChild(
document.body.firstChild // The invisible text node
);
getSelection().setBaseAndExtent(
data.appendChild(source),
0, source,
1
);
document.querySelector("audio")
.addEventListener("DOMCharacterDataModified", () => {
getSelection().removeAllRanges()
});
document.execCommand("delete");
}
</script>
<body onload="onLoad()">
<audio>
<li contenteditable>
<data>
<source>
Messung V0.5
¤ Dauer der Verarbeitung: 0.12 Sekunden
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.