Index: /CKEditor/trunk/_test/tt/4237/4237.html
===================================================================
--- /CKEditor/trunk/_test/tt/4237/4237.html	(revision 4103)
+++ /CKEditor/trunk/_test/tt/4237/4237.html	(revision 4103)
@@ -0,0 +1,54 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
+	"http://www.w3.org/TR/html4/loose.dtd">
+<html>
+<head>
+	<title>Ticket: #4237</title>
+	<meta name="tags" content="editor,unit,all">
+	<script type="text/javascript" src="../../cktester/cell.js"></script>
+
+	<script type="text/javascript">
+CKEDITOR.config.width='400';
+CKEDITOR.config.customConfig = CKTester.cell.getAbsolutePath( '_asset/custom-config.js' );
+CKEDITOR.test.addTestCase( ( function ()
+{
+	// Local references.
+	var assert = CKEDITOR.test.assert,
+		env = CKEDITOR.env;
+	return {
+		/**
+		 * Test editor toolbar.
+		 */
+		test_replace : function()
+		{
+			var self = this;
+
+			CKEDITOR.replace( 'editor1',
+				{
+					on :
+					{
+						instanceReady : function()
+						{
+							self.resume( function()
+							{
+								if( env.webkit && env.version >= 525 )
+									assert.fail();
+							} );
+						}
+					}
+				} );
+
+			this.wait();
+		}
+	};
+} )() );
+	</script>
+<body>
+<br />
+<br />
+<br />
+<br />
+<br />
+<br />
+<textarea id="editor1"></textarea>
+</body>
+</html>
Index: /CKEditor/trunk/_test/tt/4237/_asset/custom-config.js
===================================================================
--- /CKEditor/trunk/_test/tt/4237/_asset/custom-config.js	(revision 4103)
+++ /CKEditor/trunk/_test/tt/4237/_asset/custom-config.js	(revision 4103)
@@ -0,0 +1,19 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+CKEDITOR.editorConfig = function( config )
+{
+	// Define changes to default configuration here. For example:
+	// config.autoLanguage = false;
+	// config.defaultLanguage = 'pt-br';
+
+	config.toolbar =
+	[
+		['Source','Image','Maximize','Preview','Print','-','Cut','Copy','Paste','-','Undo','Redo','-','Find','Replace','-','HorizontalRule','Table','imageUPLOAD','Link','Unlink','SpecialChar'],
+		['Format','Font','FontSize','-','Bold','Italic','Underline','Strike'],
+		['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock','-','NumberedList','BulletedList','Outdent','Indent','-','TextColor','BGColor']
+	];
+
+};
