Index: /CKEditor/tests/tt/7074/1.html
===================================================================
--- /CKEditor/tests/tt/7074/1.html	(revision 6409)
+++ /CKEditor/tests/tt/7074/1.html	(revision 6409)
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
+	"http://www.w3.org/TR/html4/loose.dtd">
+<html>
+<head>
+	<title>Ticket: #7074 Bold style on table</title>
+	<meta name="tags" content="editor,unit,all">
+	<script type="text/javascript" src="../../cktester/cell.js"></script>
+	<script>
+( function()
+{
+	var ts, tc, assert = CKEDITOR.test.assert, test = CKEDITOR.test, selector = YAHOO.util.Selector;
+
+	YAHOO.tool.TestRunner.add( ts = new CKEDITOR.test.suites.editorTestSuite(
+		{
+				editorName : 'test_editor_1',
+				enterMode : CKEDITOR.ENTER_BR,
+				name :document.title
+		} ) );
+
+	ts.add( tc = new YAHOO.tool.TestCase(
+		{
+			setUp : function ()
+			{
+				// Force result data un-formatted.
+				ts.editor.dataProcessor.writer._.rules = {};
+				ts.editor.focus();
+
+			},
+
+			
+			test_set_bold: function()
+			{
+				var editor = ts.editor,
+				
+					contentWithSelection = test.getValueAsHtml( 'input' ),
+					output = '<table border="1" cellpadding="1" cellspacing="1" style="width:500px;"><tbody><tr><td><strong>a</strong></td><td><strong>b</strong></td></tr><tr><td><strong>c</strong></td><td><strong>d</strong></td></tr><tr><td><strong>e</strong></td><td><strong>f</strong></td></tr></tbody></table>';
+				//in editor output I got additional <p>&nbsp;</p> before and after the table. Why? Help would be appreciated :)
+				
+				test.setHtmlWithSelection( editor.document.getBody(), contentWithSelection );
+
+				this.wait( function ()
+				{
+					editor.execCommand( 'selectAll');
+					editor.execCommand( 'bold' );
+					assert.areSame( output, editor.getData() );
+					
+				}, 100 );
+			}
+		} ) );
+} )();
+	</script>
+</head>
+<body><textarea id='input'><table border="1" cellpadding="1" cellspacing="1" style="width: 500px; ">
+	<tbody>
+		<tr>
+			<td>
+				a</td>
+			<td>
+				b</td>
+		</tr>
+		<tr>
+			<td>
+				c</td>
+			<td>
+				d</td>
+		</tr>
+		<tr>
+			<td>
+				e</td>
+			<td>
+				f</td>
+		</tr>
+	</tbody>
+</table>
+</textarea></body>
+</html>
