Browse Source

Add firstPage option to tasks to speed up testing certain pages

Julian Viereck 14 years ago
parent
commit
8f21f87fd9
  1. 2
      test/driver.js

2
test/driver.js

@ -74,7 +74,7 @@ function nextTask() {
failure = 'load PDF doc : ' + e.toString(); failure = 'load PDF doc : ' + e.toString();
} }
task.pageNum = 1, nextPage(task, failure); task.pageNum = task.firstPage || 1, nextPage(task, failure);
} }
}; };
r.send(null); r.send(null);

Loading…
Cancel
Save