Index: /CKEditor/trunk/CHANGES.html
===================================================================
--- /CKEditor/trunk/CHANGES.html	(revision 5770)
+++ /CKEditor/trunk/CHANGES.html	(revision 5771)
@@ -97,10 +97,11 @@
 		<li><a href="http://dev.fckeditor.net/ticket/5280">#5280</a> : IE: Scrollbars where reacting improperly when clicking in the bar space.</li>
 		<li><a href="http://dev.fckeditor.net/ticket/5840">#5840</a> : Some dialog access keys are conflicting with "Ctrl + A", select all text behavior on text input.</li>
+		<li><a href="http://dev.fckeditor.net/ticket/6059">#6059</a> : Changing list type didn't preserve the list's attributes.</li>
 		<li>Updated the following language files:<ul>
 			<li>Chinese Simplified;</li>
+			<li>Hebrew;</li>
 			<li><a href="http://dev.fckeditor.net/ticket/5962">#5962</a> : German;</li>
 			<li><a href="http://dev.fckeditor.net/ticket/5645">#5645</a> : Portuguese;</li>
 			<li><a href="http://dev.fckeditor.net/ticket/5797">#5797</a> : Turkish;</li>
-			<li>Hebrew;</li>
 		</ul></li>
 	</ul>
Index: /CKEditor/trunk/_source/plugins/list/plugin.js
===================================================================
--- /CKEditor/trunk/_source/plugins/list/plugin.js	(revision 5770)
+++ /CKEditor/trunk/_source/plugins/list/plugin.js	(revision 5771)
@@ -219,5 +219,11 @@
 		}
 
-		var fakeParent = groupObj.root.getDocument().createElement( this.type );
+		var root = groupObj.root,
+			fakeParent = root.getDocument().createElement( this.type );
+		// Copy all attributes, except from 'start' and 'type'.
+		root.copyAttributes( fakeParent, { start : 1, type : 1 } );
+		// The list-style-type property should be ignored.
+		fakeParent.removeStyle( 'list-style-type' );
+
 		for ( i = 0 ; i < selectedListItems.length ; i++ )
 		{
