Blogger.com textarea bug

David Hyatt hyatt@apple.com
Fri, 17 Jan 2003 11:53:42 -0800


I had to patch the old table code to fix this bug as well.  I wanted to 
verify that this bug occurs on the trunk before plunging in to fix it.

<table height=100 border=2>
<tr><td>hello
<tr><td height=100%><textarea style="height:100%"></textarea>
</table>

In Safari (with the new table code), the textarea's "height:100%" 
causes it to compute a height of about 100 for itself, so the entire 
table ends up being too tall.  Instead of just getting 100 minus the 
space taken up by the top row, the second cell is ending up being way 
too tall.

dave