Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(364)

Unified Diff: chrome/browser/resources/print_preview/data/document_info.js

Issue 12209086: Page range comparisons should use document size. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/print_preview/data/document_info.js
diff --git a/chrome/browser/resources/print_preview/data/document_info.js b/chrome/browser/resources/print_preview/data/document_info.js
index c27d10e461efa1322dedbf3405f7411f34b093d4..aef1d27ef2e72daa0a8c7dcf0058d53194178453 100644
--- a/chrome/browser/resources/print_preview/data/document_info.js
+++ b/chrome/browser/resources/print_preview/data/document_info.js
@@ -20,7 +20,7 @@ cr.define('print_preview', function() {
* Number of pages in the document to print.
* @type {number}
*/
- this.pageCount = 1;
+ this.pageCount = 0;
/**
* Size of the pages of the document in points.

Powered by Google App Engine
This is Rietveld 408576698