bzbarsky%mit.edu fc8275495f Fix bug 300691. r+sr=sicking
git-svn-id: svn://10.0.0.236/trunk@219166 18797224-902f-48f8-a5cc-f745e15eee43
2007-01-30 05:48:22 +00:00

16 lines
437 B
HTML

<!DOCTYPE html>
<html>
<body>
<textarea id="t"></textarea>
<script>
document.getElementById("t").
appendChild(document.createTextNode("abcdefgh"));
document.getElementById("t").appendChild(document.createTextNode("ijkl"));
// Flush reflow
document.body.offsetWidth;
document.getElementById("t").
removeChild(document.getElementById("t").lastChild);
</script>
</body>
</html>