blob: d70b65cfb7fbe42095a3a7ee11948a6add19d195 [file] [log] [blame]
<html>
<body style="overflow:hidden;">
<textarea id="ta" rows=10 cols=40>Sample text</textarea>
<script>
var v = document.getElementById('ta');
var w = v.offsetWidth; // Force a layout
v.rows += 40; // Change the rows again.
w = v.offsetWidth; // Force a layout again.
</script>
</body>
</html>