Index: /CKEditor/tests/tt/4450/1.html
===================================================================
--- /CKEditor/tests/tt/4450/1.html	(revision 4550)
+++ /CKEditor/tests/tt/4450/1.html	(revision 4551)
@@ -18,4 +18,45 @@
 	ts.add( tc = new YAHOO.tool.TestCase(
 		{
+//			shouldIgnoreAllBut : [ 'test_iterator_on_multiple_cells' ],
+
+			setUp: function()
+			{
+				var editor = ts.editor;
+				// Force result data unformatted.
+				editor.dataProcessor.writer._.rules = {};
+				
+			},
+
+			// Test domiterator will ignore bookmark nodes when iterating .
+			test_iterator_on_multiple_cells : function ()
+			{
+				// Only firefox support selecting multiple ranges.
+				if( !CKEDITOR.env.gecko )
+					return;
+				
+				var editor = ts.editor,
+					input = test.getValueAsHtml( 'textarea_1' );
+
+				test.setHtmlWithSelection( editor.document.getBody(), input );
+
+				var selection = editor.getSelection(),
+					bookmarks = selection.createBookmarks(),
+					range = selection.getRanges()[ 0 ],
+					iterator,
+					block;
+				
+				iterator = range.createIterator();
+				while ( ( block = iterator.getNextParagraph() ) )
+				;
+
+				selection.selectBookmarks( bookmarks );
+				
+				assert.areSame(
+						test.getValueAsHtml( 'output_1' ),
+						editor.getData(),
+						'Output justified output doesn\'t match.' );
+
+			},
+
 			/**
 			 * Apply the justify paragraph styles with multiple table columns selected on Firefox.
@@ -23,11 +64,10 @@
 			test_justify_on_multiple_table_columns : function()
 			{
+				var editor = ts.editor;
+				
 				// 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( {
@@ -59,4 +99,5 @@
 <body>
 <textarea id="textarea_1"><table><tr>[<td>cell1</td>][<td>cell2</td>]</tr></table></textarea>
+<textarea id="output_1"><table><tbody><tr><td>cell1</td><td>cell2</td></tr></tbody></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>
