Index: CKEditor/trunk/_source/core/dom/element.js
===================================================================
--- CKEditor/trunk/_source/core/dom/element.js	(revision 6359)
+++ CKEditor/trunk/_source/core/dom/element.js	(revision 6360)
@@ -1,3 +1,3 @@
-﻿/*
+﻿﻿/*
 Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.html or http://ckeditor.com/license
@@ -257,24 +257,26 @@
 		* Retrieve block element's filler node if existed.
 		*/
-	   getBogus : function()
-	   {
-		   if ( !this.isBlockBoundary() )
-			   return null;
-
-		   var lastChild = this.getLast();
-
-		   // Ignore empty/spaces text.
-		   while ( lastChild && lastChild.type == CKEDITOR.NODE_TEXT && !CKEDITOR.tools.rtrim( lastChild.getText() ) )
-			   lastChild = lastChild.getPrevious();
-
-		   if ( lastChild &&
-				   ( CKEDITOR.env.ie && lastChild.type == CKEDITOR.NODE_TEXT && CKEDITOR.tools.trim( lastChild.getText() ).match( /^(?:&nbsp;|\xa0)$/ )
-						   || CKEDITOR.env.gecko && CKEDITOR.env.webkit && lastChild.is( 'br' ) ) )
-		   {
-			   return lastChild;
-		   }
-
-		   return null;
-	   },
+		getBogus : function()
+		{
+			if ( !this.isBlockBoundary() )
+				return null;
+
+			var lastChild = this.getLast();
+
+			// Ignore empty/spaces text.
+			while ( lastChild && lastChild.type == CKEDITOR.NODE_TEXT
+					&& !CKEDITOR.tools.rtrim( lastChild.getText() ) )
+				lastChild = lastChild.getPrevious();
+
+			if ( lastChild &&
+					( CKEDITOR.env.ie && lastChild.type == CKEDITOR.NODE_TEXT
+							&& CKEDITOR.tools.trim( lastChild.getText() ).match( /^(?:&nbsp;|\xa0)$/ )
+							|| CKEDITOR.env.gecko && CKEDITOR.env.webkit && lastChild.is( 'br' ) ) )
+			{
+				return lastChild;
+			}
+
+			return null;
+		},
 
 		/**
