Index: /CKEditor/branches/prototype/_source/plugins/fakeobjects/plugin.js
===================================================================
--- /CKEditor/branches/prototype/_source/plugins/fakeobjects/plugin.js	(revision 2849)
+++ /CKEditor/branches/prototype/_source/plugins/fakeobjects/plugin.js	(revision 2850)
@@ -67,39 +67,39 @@
 					cssHeightRegex = /height\s*:\s*([0-9]+)\s*(?:[\w%]+)?\s*;?/i;
 
-					var copyParser = function()
-					{
-						this._ = { html : null };
-						this.output = [];
-
-						CKEDITOR.htmlParser.call( this );
-					};
-					copyParser.prototype = {
-						onTagOpen : function( tagName, attributes, selfClosing )
-						{
-							this.output.push( makeTagOpenerHtml( tagName, attributes, selfClosing ) );
-						},
-
-						onTagClose : function( tagName )
-						{
-							if ( !emptyElements[ tagName] )
-								this.output.push( '</' + tagName + '>' );
-						},
-
-						onText : function( text )
-						{
-							this.output.push( text );
-						},
-
-						onComment : function( comment )
-						{
-							this.output.push( '<!--' + comment + '-->' );
-						},
-
-						parse : function( html )
-						{
-							this._.html = html;
-							return CKEDITOR.htmlParser.prototype.parse.apply( this, arguments );
-						}
-					};
+				var copyParser = function()
+				{
+					this._ = { html : null };
+					this.output = [];
+
+					CKEDITOR.htmlParser.call( this );
+				};
+				copyParser.prototype = {
+					onTagOpen : function( tagName, attributes, selfClosing )
+					{
+						this.output.push( makeTagOpenerHtml( tagName, attributes, selfClosing ) );
+					},
+
+					onTagClose : function( tagName )
+					{
+						if ( !emptyElements[ tagName] )
+							this.output.push( '</' + tagName + '>' );
+					},
+
+					onText : function( text )
+					{
+						this.output.push( text );
+					},
+
+					onComment : function( comment )
+					{
+						this.output.push( '<!--' + comment + '-->' );
+					},
+
+					parse : function( html )
+					{
+						this._.html = html;
+						return CKEDITOR.htmlParser.prototype.parse.apply( this, arguments );
+					}
+				};
 				
 				/**
