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

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

Issue 2030193002: Add 'total' field to 'PaymentDetails'. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase, address comments, and add more tests 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: 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 2ba3a2e50db5dbd5ab28b52a33c60a45096ad031..7c0ab8b1bef02d387220d15538903d2dd8db906f 100644
--- a/third_party/WebKit/LayoutTests/payments/promises-keep-request-alive.html
+++ b/third_party/WebKit/LayoutTests/payments/promises-keep-request-alive.html
@@ -5,16 +5,11 @@
<script src="resources/payment-request-mock.js"></script>
<script>
var details = {
- displayItems: [
+ total:
{
- label: 'Sub-total',
- amount: { currency: 'USD', value : '55.00' }, // US$55.00
- },
- {
- label: 'Sales Tax',
- amount: { currency: 'USD', value : '5.00' }, // US$5.00
+ label: 'Total',
+ amount: {currency: 'USD', value: '55.00'}, // US$55.00
}
- ]
};
var response_data = {

Powered by Google App Engine
This is Rietveld 408576698