Index: /CKEditor/trunk/CHANGES.html
===================================================================
--- /CKEditor/trunk/CHANGES.html	(revision 6551)
+++ /CKEditor/trunk/CHANGES.html	(revision 6552)
@@ -68,4 +68,5 @@
 		<li><a href="http://dev.ckeditor.com/ticket/6662">#6662</a> : [FF] List structure pasting now works with FF4 (RC), which is caused by a regression from FF3.x.</li>
 		<li><a href="http://dev.ckeditor.com/ticket/7300">#7300</a> : Link dialog now loads numeric values correctly.</li>
+		<li><a href="http://dev.ckeditor.com/ticket/7330">#7330</a> : New list items now do not inherit the <code>value</code> attribute from their sibiling.</li>
 		<li>Updated the following language files:<ul>
 			<li><a href="http://dev.ckeditor.com/ticket/7124">#7124</a> : Czech;</li>
Index: /CKEditor/trunk/_source/plugins/enterkey/plugin.js
===================================================================
--- /CKEditor/trunk/_source/plugins/enterkey/plugin.js	(revision 6551)
+++ /CKEditor/trunk/_source/plugins/enterkey/plugin.js	(revision 6552)
@@ -111,4 +111,6 @@
 						// Otherwise, duplicate the previous block.
 						newBlock = previousBlock.clone();
+						// Value attribute of list item should not be duplicated (#7330).
+						newBlock.is( 'li' ) && newBlock.removeAttribute( 'value' );
 					}
 				}
