Index: textarea.js =================================================================== RCS file: /cvs/drupal/drupal/misc/textarea.js,v retrieving revision 1.11 diff -u -F^f -r1.11 textarea.js --- textarea.js 7 Sep 2006 08:05:31 -0000 1.11 +++ textarea.js 11 Feb 2007 18:56:24 -0000 @@ -4,7 +4,8 @@ $('textarea.resizable:not(.processed)').each(function() { var textarea = $(this).addClass('processed'), staticOffset = null; - $(this).wrap('
') + // When wrapping the text area, work around an IE margin bug. + $(this).wrap('
') .parent().append($('
').mousedown(startDrag)); var grippie = $('div.grippie', $(this).parent())[0];