Index: /CKEditor/tests/tt/1659/1.html
===================================================================
--- /CKEditor/tests/tt/1659/1.html	(revision 4434)
+++ /CKEditor/tests/tt/1659/1.html	(revision 4434)
@@ -0,0 +1,51 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
+	"http://www.w3.org/TR/html4/loose.dtd">
+<html>
+<head>
+	<title>Ticket: #1659</title>
+	<meta name="tags" content="editor,manual,all">
+	<script type="text/javascript" src="../../cktester/cell.js"></script>
+	<style>
+		#cke_editor2
+		{
+			float: left;
+		}
+		#cke_editor3
+		{
+			float: right;
+		}
+	</style>
+	<script>
+		YAHOO.util.Event.removeListener( window, 'load' );
+		window.onload = function ()
+		{
+			CKEDITOR.replace( 'editor2',
+			{
+				toolbar : "Basic",
+				contentsCss : CKTESTER.cell.getAbsolutePath( 'assets/contents.css' ),
+				width : 600,
+				height : 200
+			} );
+
+			CKEDITOR.replace( 'editor3',
+			{
+				toolbar : "Basic",
+				contentsCss : CKTESTER.cell.getAbsolutePath( 'assets/contents.css' ),
+				width: 600,
+				height : 200
+			} );
+		}
+	</script>
+</head>
+<body>
+<pre>
+=== Test Focus Editor ===
+ 1. Click and drag the vertical/horizontal scrollbar on both editors;
+ * Expected Result: Editor won't gain focus.
+ 1. Click the area below body but within the editing frame.
+ * Expected Result: The editor '''gains focus''' and the cursor is blinking as soon as mouse down.
+</pre>
+<textarea id="editor2" name="editor2" rows="10" cols="80"><p>text<br/>text<br/>text<br/>text<br/>text<br/>text<br/>text<br/>text<br/>text<br/>text<br/></p></textarea>
+<textarea id="editor3" name="editor3" rows="10" cols="80"><p>texttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttext</p></textarea>
+</body>
+</html>
Index: /CKEditor/tests/tt/1659/assets/contents.css
===================================================================
--- /CKEditor/tests/tt/1659/assets/contents.css	(revision 4434)
+++ /CKEditor/tests/tt/1659/assets/contents.css	(revision 4434)
@@ -0,0 +1,33 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+html {
+	margin: 5px;
+	border: 2px solid red;
+}
+
+body {
+	background-color: #AAA;
+	padding: 5px 5px 5px 5px;
+	margin: 5px;
+	border: 2px solid green;
+}
+
+html
+{
+	/* #3658: [IE6] Editor document has horizontal scrollbar on long lines
+	To prevent this misbehavior, we show the scrollbar always */
+	_overflow-y: scroll
+}
+
+img:-moz-broken
+{
+	-moz-force-broken-image-icon : 1;
+	width : 24px;
+	height : 24px;
+}
+img, input, textarea
+{
+	cursor: default;
+}
