| Index: chrome/test/data/webui/history_browsertest.js
|
| diff --git a/chrome/test/data/webui/history_browsertest.js b/chrome/test/data/webui/history_browsertest.js
|
| index 5795fab375a629a9833eb84f110b9596ead1c747..4455ccefacb77abf0688fd734ca4f9d2fa85f907 100644
|
| --- a/chrome/test/data/webui/history_browsertest.js
|
| +++ b/chrome/test/data/webui/history_browsertest.js
|
| @@ -140,9 +140,10 @@ HistoryWebUITest.prototype = {
|
| */
|
| queryHistoryStub_: function(args) {
|
| var searchText = args[0];
|
| - var range = args[1]
|
| - var cursor = args[2];
|
| - var maxCount = args[3];
|
| + var offset = args[1];
|
| + var range = args[2];
|
| + var cursor = args[3];
|
| + var maxCount = args[4];
|
|
|
| var resultCount = Math.min(maxCount, this.fakeHistory_.length - cursor);
|
| var results = this.fakeHistory_.slice(cursor, cursor + resultCount);
|
|
|