| Index: third_party/WebKit/LayoutTests/payments/payment-request-interface.html
|
| diff --git a/third_party/WebKit/LayoutTests/payments/payment-request-interface.html b/third_party/WebKit/LayoutTests/payments/payment-request-interface.html
|
| index aa44b1f22c1695c0a8505a4dc2ad13cb1d64e17b..ed236f94234446acba75ce59251a56c2607bab71 100644
|
| --- a/third_party/WebKit/LayoutTests/payments/payment-request-interface.html
|
| +++ b/third_party/WebKit/LayoutTests/payments/payment-request-interface.html
|
| @@ -270,6 +270,18 @@ test(function() {
|
| }, 'Android Pay parameters for produciton environment with network token should not throw.');
|
|
|
| test(function() {
|
| + new PaymentRequest([{'supportedMethods': ['basic-card'], 'data': {'supportedTypes': ['debit'], 'supportedNetworks': ['visa']}}], buildDetails());
|
| +}, 'Basic card parameters should not throw.');
|
| +
|
| +test(function() {
|
| + new PaymentRequest([{'supportedMethods': ['basic-card'], 'data': {'supportedTypes': [], 'supportedNetworks': []}}], buildDetails());
|
| +}, 'Empty basic card parameters should not throw.');
|
| +
|
| +test(function() {
|
| + new PaymentRequest([{'supportedMethods': ['basic-card'], 'data': {'supportedTypes': 0, 'supportedNetworks': 'foo'}}], buildDetails());
|
| +}, 'Invalid basic card parameters should not throw.');
|
| +
|
| +test(function() {
|
| new PaymentRequest([{'supportedMethods': ['https://android.com/pay'], 'data': {'merchantName': 'Merchant Inc', 'merchantId': '123', 'allowedCardNetworks': ['AMEX', 'DISCOVER', 'MASTERCARD', 'VISA'], 'paymentMethodTokenizationParameters': {'tokenizationType': 'NETWORK_TOKEN', 'parameters': {'key': 'value'}}}}], buildDetails());
|
| }, 'Android Pay parameters for network token without environment key should not throw.');
|
|
|
|
|