Index: /CKEditor/tests/dt/plugins/selection/selection.html
===================================================================
--- /CKEditor/tests/dt/plugins/selection/selection.html	(revision 4987)
+++ /CKEditor/tests/dt/plugins/selection/selection.html	(revision 4988)
@@ -41,4 +41,21 @@
 		},
 
+		// Selection  in front of a table cell start with <br />. 
+		test_selection_ie2 : function()
+		{
+			if ( !CKEDITOR.env.ie )
+				return;
+
+			var $range = document.body.createTextRange();
+			$range.moveToElementText( doc.getById( 'target2' ).$ );
+			$range.collapse();
+			$range.select();
+
+			var outputRange = doc.getSelection().getRanges()[ 0 ];
+			assert.areEqual( doc.getById( 'target2' ).$, outputRange.startContainer.$ );
+			assert.areEqual( 0, outputRange.startOffset );
+			assert.isTrue( outputRange.collapsed );
+		},
+
 		name : document.title
 	};
@@ -47,7 +64,13 @@
 	</script>
 </head>
-<body>
+<body contentEditable="true">
 	<p>
 		This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">CKEditor</a>.</p>
+	<table>
+		<tr>
+			<td id="target2" style="width:200px">
+				<br id="br1"/>text</td>
+		</tr>
+	</table>
 </body>
 </html>
