Index: /CKEditor/trunk/_source/plugins/htmldataprocessor/plugin.js
===================================================================
--- /CKEditor/trunk/_source/plugins/htmldataprocessor/plugin.js	(revision 7565)
+++ /CKEditor/trunk/_source/plugins/htmldataprocessor/plugin.js	(revision 7566)
@@ -234,10 +234,6 @@
 				title : function( element )
 				{
-					var savedTitle = element.attributes[ 'data-cke-title' ];
-					if ( savedTitle )
-					{
-						var titleText = element.children[ 0 ];
-						titleText && ( titleText.value = element.attributes[ 'data-cke-title' ] || '' );
-					}
+					var titleText = element.children[ 0 ];
+					titleText && ( titleText.value = element.attributes[ 'data-cke-title' ] || '' );
 				}
 			},
Index: /CKEditor/trunk/_source/plugins/wysiwygarea/plugin.js
===================================================================
--- /CKEditor/trunk/_source/plugins/wysiwygarea/plugin.js	(revision 7565)
+++ /CKEditor/trunk/_source/plugins/wysiwygarea/plugin.js	(revision 7566)
@@ -1230,12 +1230,13 @@
 				});
 
-			// [IE] JAWS will not recognize the aria label we used on the iframe
-			// unless the frame window title string is used as the voice label,
-			// backup the original one and restore it on output.
-			CKEDITOR.env.ie && editor.on( 'contentDom', function()
+			editor.on( 'contentDom', function()
 				{
 					var title = editor.document.getElementsByTag( 'title' ).getItem( 0 );
 					title.data( 'cke-title', editor.document.$.title );
-					editor.document.$.title = frameLabel;
+
+					// [IE] JAWS will not recognize the aria label we used on the iframe
+					// unless the frame window title string is used as the voice label,
+					// backup the original one and restore it on output.
+					CKEDITOR.env.ie && ( editor.document.$.title = frameLabel );
 				});
 
