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

Unified Diff: third_party/WebKit/LayoutTests/payments/promises-keep-request-alive.html

Issue 1981903002: PaymentRequest: Rename 'currencyCode' to 'currency' in CurrencyAmount.idl. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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: third_party/WebKit/LayoutTests/payments/promises-keep-request-alive.html
diff --git a/third_party/WebKit/LayoutTests/payments/promises-keep-request-alive.html b/third_party/WebKit/LayoutTests/payments/promises-keep-request-alive.html
index 5ba78cfe5cc68e37a68aa83ff714875af5e8e42f..99d3f91f24a4677a4bf0e693b3f0cbefc6e53a18 100644
--- a/third_party/WebKit/LayoutTests/payments/promises-keep-request-alive.html
+++ b/third_party/WebKit/LayoutTests/payments/promises-keep-request-alive.html
@@ -9,12 +9,12 @@ var details = {
{
id: 'bar',
label: 'Sub-total',
- amount: { currencyCode: 'USD', value : '55.00' }, // US$55.00
+ amount: { currency: 'USD', value : '55.00' }, // US$55.00
},
{
id: 'foo',
label: 'Sales Tax',
- amount: { currencyCode: 'USD', value : '5.00' }, // US$5.00
+ amount: { currency: 'USD', value : '5.00' }, // US$5.00
}
]
};

Powered by Google App Engine
This is Rietveld 408576698