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

Unified Diff: chrome/test/data/android/payments/dynamic_shipping.js

Issue 2093363002: Autofill address editor in PaymentRequest UI. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@contact-editor
Patch Set: Fix try-bot Created 4 years, 6 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/android/payments/dynamic_shipping.js
diff --git a/chrome/test/data/android/payments/dynamic_shipping.js b/chrome/test/data/android/payments/dynamic_shipping.js
index 778afdc5a1f2cbdb6b7da3fbae20f3a71f6b246c..d5c68d9de9b63480eab22c85d88c3df4f3ad565b 100644
--- a/chrome/test/data/android/payments/dynamic_shipping.js
+++ b/chrome/test/data/android/payments/dynamic_shipping.js
@@ -67,11 +67,11 @@ function updateDetails(details, addr) {
selected: true
};
if (addr.region === 'CA') {
- shippingOption.id = 'ca';
+ shippingOption.id = 'californiaShippingOption';
shippingOption.label = 'Free shipping in California';
details.total.amount.value = '5.00';
} else {
- shippingOption.id = 'us';
+ shippingOption.id = 'usShippingOption';
shippingOption.label = 'Standard shipping in US';
shippingOption.amount.value = '5.00';
details.total.amount.value = '10.00';
« no previous file with comments | « chrome/browser/autofill/android/personal_data_manager_android.cc ('k') | components/autofill/core/browser/autofill_profile.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698