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

Unified Diff: chrome/test/data/webui/print_preview.js

Issue 10829229: Fix duplex defaults. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 4 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/test/data/webui/print_preview.js
diff --git a/chrome/test/data/webui/print_preview.js b/chrome/test/data/webui/print_preview.js
index 5253866cd59db841f6277c8d9f756e16f67ee0bf..38abab2f8dc93b615163f6f2a27adecac50ef1db 100644
--- a/chrome/test/data/webui/print_preview.js
+++ b/chrome/test/data/webui/print_preview.js
@@ -648,7 +648,8 @@ TEST_F('PrintPreviewWebUITest', 'TestDuplexSettings', function() {
'setColorAsDefault': true,
'disableCopiesOption': false,
'disableLandscapeOption': true,
- 'printerDefaultDuplexValue': 0
+ 'printerDefaultDuplexValue': 0,
+ 'setDuplexAsDefault': false
};
this.nativeLayer_.dispatchEvent(capsSetEvent);
@@ -681,7 +682,8 @@ TEST_F('PrintPreviewWebUITest', 'TestDuplexSettings', function() {
'setColorAsDefault': false,
'disableCopiesOption': false,
'disableLandscapeOption': false,
- 'printerDefaultDuplexValue': 1
+ 'printerDefaultDuplexValue': 1,
+ 'setDuplexAsDefault': true
};
this.nativeLayer_.dispatchEvent(capsSetEvent);

Powered by Google App Engine
This is Rietveld 408576698