Index: /CKEditor/tests/tt/4594/1.html
===================================================================
--- /CKEditor/tests/tt/4594/1.html	(revision 4432)
+++ /CKEditor/tests/tt/4594/1.html	(revision 4432)
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
+	"http://www.w3.org/TR/html4/loose.dtd">
+<html>
+<head>
+	<title>Ticket: #4594</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',
+			{
+				language : 'ar',
+				width : '49%',
+				height : 200
+			} );
+
+			CKEDITOR.replace( 'editor3',
+			{
+				width: '49%',
+				height : 200
+			} );
+		};
+	</script>
+</head>
+<body>
+<pre>
+=== Test Context Menu Off-screen support ===
+ 1. Open context menu by the right most table cell of right editor content;
+ * Expected Result: Menu is fully visible.
+ 1. Mouse over to open the sub menu;
+ * Expected Result: Sub menu is fully visible.
+
+ 1. Open context menu by the left most table cell of left editor content;
+ * Expected Result: Menu is fully visible.
+ 1. Mouse over to open the sub menu;
+ * Expected Result: Sub menu is fully visible.
+</pre>
+<textarea id="editor2" name="editor2" rows="10" cols="80">
+<table style='float:left'>
+	<tr>
+		<td>cell1</td>
+		<td>cell2</td>
+	</tr>
+</table>
+</textarea>
+<textarea id="editor3" name="editor3" rows="10" cols="80">
+<table style='float:right'>
+	<tr>
+		<td>cell1</td>
+		<td>cell2</td>
+	</tr>
+</table>
+</textarea>
+</body>
+</html>
