Index: /CKTester/fort.js
===================================================================
--- /CKTester/fort.js	(revision 4141)
+++ /CKTester/fort.js	(revision 4142)
@@ -279,7 +279,12 @@
 		{
 			var deliminator = /[\/\\]+/,
-				pathA = pathA.split( deliminator ),
-				pathB = pathB.split( deliminator ),
-				length = pathA.length - 1,
+				normalizePath = function ( path )
+				{
+					// Always start with backslash.
+					return path.replace( /^([^\/\\])/, '/$1' );
+				},
+				pathA = normalizePath( pathA ).split( deliminator ),
+				pathB = normalizePath( pathB ).split( deliminator ),
+				length = pathA.length,
 				result = [];
 			for( var i = 0 ; i < length; i++ )
