Index: /CKEditor/tests/bt/remove_focus_from_editable_iframe/1.html
===================================================================
--- /CKEditor/tests/bt/remove_focus_from_editable_iframe/1.html	(revision 4332)
+++ /CKEditor/tests/bt/remove_focus_from_editable_iframe/1.html	(revision 4332)
@@ -0,0 +1,40 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE html
+		PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+		"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<head>
+	<title>switch focus from a editable iframe document to a following link</title>
+	<meta name="tags" content="manual,all">
+	<script type="text/javascript" src="../../cktester/cell.js"></script>
+	<script>
+		function onLinkFocused()
+		{
+			alert( this.id + " focused" );
+		};
+
+		window.onload = function()
+		{
+			document.getElementById( 'wysiwyg' ).contentWindow.focus();
+		}
+	</script>
+</head>
+<body>
+<div>
+	<ol>
+		<li>This document should gain initial focus.</li>
+		<li>Press 'Tab' key to move focus to the following link.</li>
+		<dt>Expected Result:</dt>
+		<dd>Focus is removed from editing document after 'link1 is focused' is prompted.</dd>
+		<dt>Actual Result:</dt>
+		<dd>In IE6/7, notice that the cursor of this document is still blinking despite the fact that first link gain focus.</dd>
+		<li>Press 'Tab' key again to move focus to the second link.</li>
+		<dt>Expected Result:</dt>
+		<dd>Cursor is not anymore blinking inside editing document after 'link2 is focused' is prompted.</dd>
+	</ol>
+</div>
+<iframe id="wysiwyg" src="1a.html"></iframe>
+<a id="link1" href="javascript:void(0)" onfocus="onLinkFocused.call(this)">First link</a>
+<a id="link2" href="javascript:void(0)" onfocus="onLinkFocused.call(this)">Second link</a>
+</body>
+</html>
Index: /CKEditor/tests/bt/remove_focus_from_editable_iframe/1a.html
===================================================================
--- /CKEditor/tests/bt/remove_focus_from_editable_iframe/1a.html	(revision 4332)
+++ /CKEditor/tests/bt/remove_focus_from_editable_iframe/1a.html	(revision 4332)
@@ -0,0 +1,16 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
+	"http://www.w3.org/TR/html4/loose.dtd">
+<html>
+<head>
+	<title>Editable Frame</title>
+	<script type="text/javascript">
+	window.onload = function()
+	{
+		document.body.contentEditable = true;
+	}
+	</script>
+</head>
+<body>
+An editable document
+</body>
+</html>
