Index: /CKEditor/tests/tt/3912/1.html
===================================================================
--- /CKEditor/tests/tt/3912/1.html	(revision 4458)
+++ /CKEditor/tests/tt/3912/1.html	(revision 4458)
@@ -0,0 +1,48 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
+	"http://www.w3.org/TR/html4/loose.dtd">
+<html>
+<head>
+	<title>Ticket: #3912</title>
+	<meta name="tags" content="editor,manual,all">
+	<script type="text/javascript" src="../../cktester/cell.js"></script>
+	<style>
+		#editors
+		{
+			height: 500px;
+			overflow: auto;
+		}
+	</style>
+	<script>
+		// Cancel the default editor instance.
+		YAHOO.util.Event.removeListener( window, 'load' );
+
+		function gen()
+		{
+			var rgb = [];
+			for ( var i = 0; i < 3; i++ )
+				rgb.push( Math.floor( Math.random() * 255 ) );
+			return 'rgb(' + rgb.join( ',' ) + ')';
+		}
+		
+		window.onload = function()
+		{
+			for ( var i = 0; i < 31; i++ )
+			{
+				CKEDITOR.appendTo( 'editors',
+				{
+					toolbar : [ ['Templates','-','Styles' ] ],
+					uiColor : gen()
+				} );
+			}
+		}
+	</script>
+
+</head>
+<body>
+<pre>
+=== Check the editor theme color ===
+ * Expected Result: There should be '''31''' editor with various color scheme appeared on the page.
+</pre>
+<div id="editors"></div>
+</body>
+</html>
