Index: /FCKtest/fckeditor/ts/interactive/1514/sample.css
===================================================================
--- /FCKtest/fckeditor/ts/interactive/1514/sample.css	(revision 1276)
+++ /FCKtest/fckeditor/ts/interactive/1514/sample.css	(revision 1276)
@@ -0,0 +1,50 @@
+/*
+ * FCKeditor - The text editor for Internet - http://www.fckeditor.net
+ * Copyright (C) 2003-2007 Frederico Caldeira Knabben
+ *
+ * == BEGIN LICENSE ==
+ *
+ * Licensed under the terms of any of the following licenses at your
+ * choice:
+ *
+ *  - GNU General Public License Version 2 or later (the "GPL")
+ *    http://www.gnu.org/licenses/gpl.html
+ *
+ *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
+ *    http://www.gnu.org/licenses/lgpl.html
+ *
+ *  - Mozilla Public License Version 1.1 or later (the "MPL")
+ *    http://www.mozilla.org/MPL/MPL-1.1.html
+ *
+ * == END LICENSE ==
+ *
+ * Styles used in the samples pages.
+ */
+
+body, td, input, select, textarea
+{
+	font-size: 12px;
+	font-family: Arial, Verdana, Sans-Serif;
+}
+
+h1
+{
+	font-weight: bold;
+	font-size: 180%;
+	margin-bottom: 10px;
+}
+
+form
+{
+	margin: 0px 0px 0px 0px;
+	padding: 0px 0px 0px 0px;
+}
+
+pre
+{
+	margin:0px;
+	padding:0px;
+	white-space: pre-wrap; /* css-3 */
+	white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
+	word-wrap: break-word; /* Internet Explorer 5.5+ */
+}
Index: /FCKtest/fckeditor/ts/interactive/1514/test1.html
===================================================================
--- /FCKtest/fckeditor/ts/interactive/1514/test1.html	(revision 1276)
+++ /FCKtest/fckeditor/ts/interactive/1514/test1.html	(revision 1276)
@@ -0,0 +1,79 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<!--
+ * FCKeditor - The text editor for Internet - http://www.fckeditor.net
+ * Copyright (C) 2003-2007 Frederico Caldeira Knabben
+ *
+ * == BEGIN LICENSE ==
+ *
+ * Licensed under the terms of any of the following licenses at your
+ * choice:
+ *
+ *  - GNU General Public License Version 2 or later (the "GPL")
+ *    http://www.gnu.org/licenses/gpl.html
+ *
+ *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
+ *    http://www.gnu.org/licenses/lgpl.html
+ *
+ *  - Mozilla Public License Version 1.1 or later (the "MPL")
+ *    http://www.mozilla.org/MPL/MPL-1.1.html
+ *
+ * == END LICENSE ==
+-->
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+	<title>Interactive test case for #1514</title>
+	<script type="text/javascript" src="../../../../config.js"></script>
+	<script type="text/javascript">
+<!--
+FCKTestUtils.LoadScript( "${EDITORPATH}/fckeditor.js" ) ;
+
+// Automatically calculates the editor base path based on the _samples directory.
+// This is usefull only for these samples. A real application should use something like this:
+// oFCKeditor.BasePath = '/fckeditor/' ;	// '/fckeditor/' is the default value.
+var sBasePath = FCKTestConfig.EditorPath + '/' ;
+
+function makeInstance( name, height )
+{
+	var oFCKeditor = new FCKeditor( name ) ;
+	oFCKeditor.BasePath	= sBasePath ;
+	oFCKeditor.Height	= height ;
+	oFCKeditor.Value	= '<p>This is some <strong>sample text<\/strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor<\/a>.<\/p>' ;
+	oFCKeditor.Config.ToolbarLocation = 'Out:toolbar' ;
+	oFCKeditor.Create() ;
+}
+
+//-->
+	</script>
+	<link href="sample.css" rel="stylesheet" type="text/css" />
+</head>
+<body>
+	<div>
+		Open the font color and background color panels with different FCKeditor instances selected, see if the panels appear at the right place.
+	</div>
+	<hr />
+	<div style="margin: 10px 20px; height: 1006px; border: 1px solid black; position: relative;">
+		<div style="margin: 0px;" id="toolbar">
+		</div>
+		<div style="position: absolute; top: 100px; left: 5px; width: 500px; height: 400px;" id="editor1">
+			<script type="text/javascript">
+			makeInstance( 'editor1', 400 );
+			</script>
+		</div>
+		<div style="position: absolute; top: 100px; left: 555px; width: 300px; height: 400px;" id="editor2">
+			<script type="text/javascript">
+			makeInstance( 'editor2', 400 );
+			</script>
+		</div>
+		<div style="position: absolute; top: 525px; left: 105px; width: 600px; height: 300px;" id="editor3">
+			<script type="text/javascript">
+			makeInstance( 'editor3', 300 );
+			</script>
+		</div>
+		<div style="position: absolute; top: 525px; left: 725px; width: 330px; height: 300px;" id="editor4">
+			<script type="text/javascript">
+			makeInstance( 'editor4', 300 );
+			</script>
+		</div>
+	</div>
+</body>
+</html>
Index: /FCKtest/tests.js
===================================================================
--- /FCKtest/tests.js	(revision 1275)
+++ /FCKtest/tests.js	(revision 1276)
@@ -56,4 +56,5 @@
 			"interactive" :
 			[
+				["1514/test1.html", "#1514: Floating panel positioning"],
 			],
 			"visual" :
