Index: /CKEditor/tests/tt/7070/1.html
===================================================================
--- /CKEditor/tests/tt/7070/1.html	(revision 6381)
+++ /CKEditor/tests/tt/7070/1.html	(revision 6381)
@@ -0,0 +1,56 @@
+<!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">
+<head>
+	<title>Ticket: #7070</title>
+	<meta name="tags" content="editor,unit,all">
+	<script type="text/javascript" src="../../cktester/cell.js"></script>
+	<script type="text/javascript">
+	//<![CDATA[
+
+!CKEDITOR.env.ie && CKEDITOR.test.addTestCase( (function()
+{
+	var assert = CKEDITOR.test.assert,
+		doc = CKEDITOR.document;
+
+	return {
+
+		test_getBogus : function()
+		{
+			assert.isFalse( !!doc.getById( 'tc0' ).getBogus() );
+		},
+
+		test_getBogus1 : function()
+		{
+			assert.isTrue( !!doc.getById( 'tc1' ).getBogus() );
+		},
+
+		test_getBogus2 : function()
+		{
+			assert.isTrue( !!doc.getById( 'tc2' ).getBogus() );
+		},
+
+		test_getBogus3 : function()
+		{
+			assert.isTrue( !!doc.getById( 'tc3' ).getBogus() );
+		},
+
+		test_getBogus4 : function()
+		{
+			assert.isFalse( !!doc.getById( 'tc4' ).getBogus() );
+		},
+
+		name : document.title
+	};
+})() );
+
+	//]]>
+	</script>
+</head>
+<body>
+	<p id="tc0">paragraph </p>
+	<p id="tc1">paragraph <br /> </p>
+	<p id="tc2"><strong><i><u>text</u><br /></i></strong></p>
+	<p id="tc3"><strong>text<br /><i></i></strong></p>
+	<div id="tc4"><p>paragraph<br /></p></div>
+</body>
+</html>
