Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / devtools / front_end / sources / FilePathScoreFunction.js
index cc6fc68..9439d22 100644 (file)
@@ -87,7 +87,7 @@ WebInspector.FilePathScoreFunction.prototype = {
                 var prevCharScore = i === 0 || j === 0 ? 0 : score[(i - 1) * m + j - 1];
                 var consecutiveMatch = i === 0 || j === 0 ? 0 : sequence[(i - 1) * m + j - 1];
                 var pickCharScore = this._match(this._query, data, i, j, consecutiveMatch);
-                if (pickCharScore && prevCharScore + pickCharScore > skipCharScore) {
+                if (pickCharScore && prevCharScore + pickCharScore >= skipCharScore) {
                     sequence[i * m + j] = consecutiveMatch + 1;
                     score[i * m + j] = (prevCharScore + pickCharScore);
                 } else {