Index: /CKEditor/tests/tt/7448/1.js
===================================================================
--- /CKEditor/tests/tt/7448/1.js	(revision 7157)
+++ /CKEditor/tests/tt/7448/1.js	(revision 7158)
@@ -12,5 +12,5 @@
 var editor = browser.editor( 'editor1' );
 
-// Create a list which has text direction and then merge with the above one.
+// Create list from a RTL paragraph with the above LTR list merged.
 editor.data( '<ol><li>ltr</li></ol><p dir="rtl">rtl</p>' );
 editor.selection( "//p[1]`0,//p[1]`1" ).button( 'Insert/Remove Numbered List' );
@@ -18,2 +18,9 @@
 var expected = '<ol><li>ltr</li><li dir="rtl">rtl</li></ol>';
 Assert.areEqual(expected, editor.compactData(), "Editor output doesn't match." );
+
+// Create list from a LTR paragraph with the above RTL list merged.
+editor.data( '<ol dir="rtl"><li>rtl</li></ol><p>ltr</p>' );
+editor.selection( "//p[1]`0,//p[1]`1" ).button( 'Insert/Remove Numbered List' );
+
+var expected = '<ol><li dir="rtl">rtl</li><li>ltr</li></ol>';
+Assert.areEqual(expected, editor.compactData(), "Editor output doesn't match." );
