Index: /CKEditor/trunk/CHANGES.html
===================================================================
--- /CKEditor/trunk/CHANGES.html	(revision 6599)
+++ /CKEditor/trunk/CHANGES.html	(revision 6600)
@@ -90,4 +90,5 @@
 		<li><a href="http://dev.ckeditor.com/ticket/7182">#7182</a> : [IE9] Using Office2003/v2 skin and RTL layout, dialog shadows were corrupted.</li>
 		<li><a href="http://dev.ckeditor.com/ticket/6913">#6913</a> : Invalid escape sequence (\b) used in PHP integration.</li>
+		<li><a href="http://dev.ckeditor.com/ticket/5757">#5757</a> : [IE6] Text wasn't wrapping in the accessibility instructions dialog.</li>
 		<li>Updated the following language files:<ul>
 			<li><a href="http://dev.ckeditor.com/ticket/7124">#7124</a> : Czech;</li>
Index: /CKEditor/trunk/_source/plugins/a11yhelp/dialogs/a11yhelp.js
===================================================================
--- /CKEditor/trunk/_source/plugins/a11yhelp/dialogs/a11yhelp.js	(revision 6599)
+++ /CKEditor/trunk/_source/plugins/a11yhelp/dialogs/a11yhelp.js	(revision 6600)
@@ -171,4 +171,5 @@
 						type : 'html',
 						id : 'legends',
+						style : 'white-space:normal;',
 						focus : function() {},
 						html : buildHelpContents() +
@@ -182,4 +183,15 @@
 								'overflow-x:hidden;' +
 							'}' +
+							// Some adjustments are to be done for IE6 and Quirks to work "properly" (#5757)
+							'.cke_browser_quirks .cke_accessibility_legend,' +
+							'.cke_browser_ie6 .cke_accessibility_legend' +
+							'{' +
+								'height:390px' +
+							'}' +
+							// Override non-wrapping white-space rule in reset css.
+							'.cke_accessibility_legend *' +
+							'{' +
+								'white-space:normal;' +
+							'}' +
 							'.cke_accessibility_legend h1' +
 							'{' +
@@ -199,5 +211,4 @@
 							'.cke_accessibility_legend dd' +
 							'{' +
-								'white-space:normal;' +
 								'margin:10px' +
 							'}' +
