blob: 37552e836a66cf1ac30ff5111e2abd3357a296e8 [file] [log] [blame]
<!doctype html>
<script src="../../resources/ahem.js"></script>
<style>
#target {
font: 10px/15px Ahem;
letter-spacing: 20px;
}
</style>
<div id="target">x</div>
<script>
const text = target.firstChild;
function typing(character) {
text.replaceData(0, 0, character);
document.body.offsetHeight;
}
typing('a');
typing('b');
typing('c');
</script>