OLD | NEW |
1 <html> | 1 <html> |
2 <body> | 2 <body style="overflow:hidden;"> |
3 <textarea id="ta" rows=10 cols=40>Sample text</textarea> | 3 <textarea id="ta" rows=10 cols=40>Sample text</textarea> |
4 <script> | 4 <script> |
5 var v = document.getElementById('ta'); | 5 var v = document.getElementById('ta'); |
6 var w = v.offsetWidth; // Force a layout | 6 var w = v.offsetWidth; // Force a layout |
7 v.rows += 40; // Change the rows again. | 7 v.rows += 40; // Change the rows again. |
8 w = v.offsetWidth; // Force a layout again. | 8 w = v.offsetWidth; // Force a layout again. |
9 </script> | 9 </script> |
10 </body> | 10 </body> |
11 </html> | 11 </html> |
12 | 12 |
OLD | NEW |