/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
/** * This object represents a live DOM text node in a <pre>.
*/ class LiveText extends Component { static get propTypes() { return {
data: PropTypes.instanceOf(Text),
};
}
componentDidUpdate() { const el = findDOMNode(this); if (el.firstChild === this.props.data) { return;
}
el.textContent = "";
el.append(this.props.data);
}
render() { return pre({ className: "data" });
}
}
// Exports from this module
exports.LiveText = LiveText;
});
Messung V0.5 in Prozent
¤ 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.0.13Bemerkung:
(vorverarbeitet am 2026-05-08)
¤
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.