Index: /CKEditor/tests/tt/4450/1.html
===================================================================
--- /CKEditor/tests/tt/4450/1.html	(revision 4402)
+++ /CKEditor/tests/tt/4450/1.html	(revision 4402)
@@ -0,0 +1,63 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
+	"http://www.w3.org/TR/html4/loose.dtd">
+<html>
+<head>
+	<title>Ticket: #4450</title>
+	<meta name="tags" content="editor,unit,all">
+	<script type="text/javascript" src="../../cktester/cell.js"></script>
+	<script>
+( function()
+{
+	var ts, tc, test = CKEDITOR.test, assert = test.assert;
+	YAHOO.tool.TestRunner.add( ts = new test.suites.editorTestSuite(
+		{
+				editorName : 'test_editor',
+				name :document.title
+		} ) );
+
+	ts.add( tc = new YAHOO.tool.TestCase(
+		{
+			/**
+			 * Apply the justify paragraph styles with multiple table columns selected on Firefox.
+			 */
+			test_justify_on_multiple_table_columns : function()
+			{
+				// Only firefox support selecting multiple ranges.
+				if( !CKEDITOR.env.gecko )
+					return;
+
+				var editor = ts.editor;
+				// Force result data unformatted.
+				editor.dataProcessor.writer._.rules = {};
+				// Force remove tail filler br for Firefox.
+				editor.dataProcessor.htmlFilter.addRules( {
+					elements : {
+						'br' : function( br ){
+							var parent = br.parent,
+								length = parent.children.length,
+								lastChild = parent.children[ length - 1 ];
+							if( lastChild == br )
+								return false;
+						}
+					}
+				} );
+
+				test.setHtmlWithSelection(
+					editor.document.getBody(),
+					test.getValueAsHtml( 'textarea_1' ) );
+
+				editor.execCommand( 'justifycenter' );
+				assert.areSame(
+						test.getValueAsHtml( 'textarea_2' ),
+						test.fixHtml( editor.getData() ),
+						'Output justified output doesn\'t match.' );
+			}
+		} ) );
+} )();
+	</script>
+</head>
+<body>
+<textarea id="textarea_1"><table><tr>[<td>cell1</td>][<td>cell2</td>]</tr></table></textarea>
+<textarea id="textarea_2"><table><tbody><tr><td style="text-align: center;">cell1</td><td style="text-align: center;">cell2</td></tr></tbody></table></textarea>
+</body>
+</html>
Index: /CKEditor/tests/tt/4461/1.html
===================================================================
--- /CKEditor/tests/tt/4461/1.html	(revision 4402)
+++ /CKEditor/tests/tt/4461/1.html	(revision 4402)
@@ -0,0 +1,30 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
+	"http://www.w3.org/TR/html4/loose.dtd">
+<html>
+<head>
+	<title>Ticket: #4461</title>
+	<meta name="tags" content="editor,manual,all">
+	<script type="text/javascript" src="../../cktester/cell.js"></script>
+	<script>
+		CKEDITOR.on( 'instanceReady', function( evt )
+		{
+			evt.removeListener();
+			evt.editor.destroy();
+			CKEDITOR.appendTo( document.body,
+			{
+				toolbar : [ ['Templates','-','Styles' ] ],
+				skin : 'office2003',
+				language : 'en'
+			} );
+		} );
+	</script>
+
+</head>
+<body>
+<pre>
+=== Check the toolbox height ===
+ * Actual Result in IE6/8:  The toolbox is getting heigher and the background is being duplicated.
+ * Actual Result in other browsers:  The toolbox is fitting the toolbar buttons well.
+</pre>
+</body>
+</html>
