Index: /CKEditor/branches/prototype/_source/plugins/sourcearea/plugin.js
===================================================================
--- /CKEditor/branches/prototype/_source/plugins/sourcearea/plugin.js	(revision 2951)
+++ /CKEditor/branches/prototype/_source/plugins/sourcearea/plugin.js	(revision 2952)
@@ -45,6 +45,16 @@
 								'text-align' : 'left' });
 
-							// Set the <textarea> value.
-							this.loadData( data );
+							if (CKEDITOR.env.ie) // textarea
+							// height/width='100%'
+							// doesn't constraint to the
+							// 'td' in IE strick mode
+							{
+								textarea.setStyles({
+											'height' : holderElement.$.clientHeight
+													+ 'px',
+											'width' : holderElement.$.clientWidth
+													+ 'px'
+										});
+							}
 
 							// Reset the holder element and append the
@@ -52,4 +62,6 @@
 							holderElement.setHtml( '' );
 							holderElement.append( textarea );
+							// Set the <textarea> value.
+							this.loadData( data );
 						},
 
