Index: misc/textarea.js
===================================================================
RCS file: /cvs/drupal/drupal/misc/textarea.js,v
retrieving revision 1.22
diff -u -p -r1.22 textarea.js
--- misc/textarea.js	17 Jan 2008 19:31:56 -0000	1.22
+++ misc/textarea.js	9 Feb 2008 07:56:36 -0000
@@ -10,7 +10,9 @@ Drupal.behaviors.textarea = function(con
 
     // When wrapping the text area, work around an IE margin bug.  See:
     // http://jaspan.com/ie-inherited-margin-bug-form-elements-and-haslayout
-    $(this).wrap('<div class="resizable-textarea"><span></span></div>')
+    // Resize property is part of the CSS 3 spec. Set here to prevent Safari 3
+    // from adding corner resize controls since we only allow verticle resizing.
+    $(this).css('resize', 'none').wrap('<div class="resizable-textarea"><span></span></div>')
       .parent().append($('<div class="grippie"></div>').mousedown(startDrag));
 
     var grippie = $('div.grippie', $(this).parent())[0];
