/* Test that if we have a unicode character in the middle of an ascii string,
the unicode character survives translation into and out of a text node. */
for (let i = 0; i < 128; i++) {
let node = document.createTextNode('');
let str = '';
for (let j = 0; j < i; j++) {
str += 'a';
}
str += '\uA0A9'
node.data = str;
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.