Index: /CKEditor/trunk/CHANGES.html
===================================================================
--- /CKEditor/trunk/CHANGES.html	(revision 5325)
+++ /CKEditor/trunk/CHANGES.html	(revision 5326)
@@ -120,4 +120,5 @@
 		<li><a href="http://dev.fckeditor.net/ticket/5266">#5266</a> : SCAYT was disturbing the rendering of TH elements.</li>
 		<li><a href="http://dev.fckeditor.net/ticket/4688">#4688</a> : SCAYT was interfering on checkDirty.</li>
+		<li><a href="http://dev.fckeditor.net/ticket/5429">#5429</a> : High Contrast mode was being mistakenly detected when loading the editor through Dojo's xhrGet.</li>
 		<li>Updated the following language files:<ul>
 			<li>Faroese;</li>
Index: /CKEditor/trunk/_source/core/_bootstrap.js
===================================================================
--- /CKEditor/trunk/_source/core/_bootstrap.js	(revision 5325)
+++ /CKEditor/trunk/_source/core/_bootstrap.js	(revision 5326)
@@ -10,4 +10,11 @@
 (function()
 {
+	// Disable HC detaction in WebKit. (#5429)
+	if ( CKEDITOR.env.webkit )
+	{
+		CKEDITOR.env.hc = false;
+		return;
+	}
+
 	// Check is High Contrast is active by creating a temporary element with a
 	// background image.
@@ -15,5 +22,4 @@
 	var useSpacer = CKEDITOR.env.ie && CKEDITOR.env.version < 7,
 		useBlank = CKEDITOR.env.ie && CKEDITOR.env.version == 7;
-
 
 	var backgroundImageUrl = useSpacer ? ( CKEDITOR.basePath + 'images/spacer.gif' ) :
@@ -37,4 +43,5 @@
 		CKEDITOR.env.hc = false;
 	}
+
 	if ( CKEDITOR.env.hc )
 		CKEDITOR.env.cssClass += ' cke_hc';
