Index: /CKEditor/trunk/_source/core/test.js
===================================================================
--- /CKEditor/trunk/_source/core/test.js	(revision 4025)
+++ /CKEditor/trunk/_source/core/test.js	(revision 4026)
@@ -82,4 +82,11 @@
 			html = html.replace( /\r/g, '' );    // Normalize CRLF.
 
+		function sorter( a, b )
+		{
+			var nameA = a[ 0 ];
+			var nameB = b[ 0 ];
+			return nameA < nameB ? -1 : nameA > nameB ? 1 : 0;
+		}
+
 		html = html.replace( /<\w[^>]*/g, function( match )
 			{
@@ -105,5 +112,5 @@
 
 							// Transform each rule entry into a string name:value.
-							for ( i = 0 ; i < rules.length ; i++ )
+							for ( var i = 0 ; i < rules.length ; i++ )
 								rules[ i ] = rules[ i ].join( ':' );
 
@@ -131,5 +138,5 @@
 				var ret = match.replace( /\s{2,}/g, ' ' );
 
-				for ( i = 0 ; i < attribs.length ; i++ )
+				for ( var i = 0 ; i < attribs.length ; i++ )
 				{
 					ret += ' ' + attribs[i][0] + '=';
@@ -141,11 +148,4 @@
 
 		return html;
-
-		function sorter( a, b )
-		{
-			var nameA = a[ 0 ];
-			var nameB = b[ 0 ];
-			return nameA < nameB ? -1 : nameA > nameB ? 1 : 0;
-		}
 	},
 
Index: /CKEditor/trunk/_source/plugins/dialogui/plugin.js
===================================================================
--- /CKEditor/trunk/_source/plugins/dialogui/plugin.js	(revision 4025)
+++ /CKEditor/trunk/_source/plugins/dialogui/plugin.js	(revision 4026)
@@ -925,5 +925,5 @@
 					setTimeout( function()
 						{
-							var e = me.getInputElement()
+							var e = me.getInputElement();
 							if ( e )
 							{
Index: /CKEditor/trunk/_source/plugins/indent/plugin.js
===================================================================
--- /CKEditor/trunk/_source/plugins/indent/plugin.js	(revision 4025)
+++ /CKEditor/trunk/_source/plugins/indent/plugin.js	(revision 4026)
@@ -157,7 +157,10 @@
 					count = children.count(),
 					child;
-				for ( var i = count - 1 ; i >= 0 ; i-- )
+
+				for ( i = count - 1 ; i >= 0 ; i-- )
+				{
 					if( ( child = children.getItem( i ) ) && child.is && child.is( 'li' )  )
 						pendingLis.push( child );
+				}
 			}
 		}
@@ -168,15 +171,21 @@
 		// Move the nested <li> to be appeared after the parent.
 		if ( pendingLis && pendingLis.length )
-			for ( var i = 0; i < pendingLis.length ; i++ )
+		{
+			for (  i = 0; i < pendingLis.length ; i++ )
 			{
 				var li = pendingLis[ i ],
 					followingList = li;
+				
 				// Nest preceding <ul>/<ol> inside current <li> if any.
 				while( ( followingList = followingList.getNext() ) &&
 					   followingList.is &&
 					   followingList.getName() in listNodeNames )
+				{
 					li.append( followingList );
+				}
+				
 				li.insertAfter( parentLiElement );
 			}
+		}
 
 		// Clean up the markers.
Index: /CKEditor/trunk/_source/plugins/styles/plugin.js
===================================================================
--- /CKEditor/trunk/_source/plugins/styles/plugin.js	(revision 4025)
+++ /CKEditor/trunk/_source/plugins/styles/plugin.js	(revision 4026)
@@ -1186,5 +1186,5 @@
 	{
 		var styleText;
-		if ( nativeNormalize != false )
+		if ( nativeNormalize !== false )
 		{
 			// Injects the style in a temporary span object, so the browser parses it,
