From 61af94fc93cd79379ea0d57d1f2d8f4c32bf0e39 Mon Sep 17 00:00:00 2001 From: autofoolip <40241672+autofoolip@users.noreply.github.com> Date: Wed, 26 Sep 2018 10:46:35 +0000 Subject: [PATCH] Bug 1492727 [wpt PR 13097] - Update interfaces/payment-method-basic-card.idl, a=testonly Automatic update from web-platform-testsUpdate interfaces/payment-method-basic-card.idl (#13097) Source: https://github.com/tidoust/reffy-reports/blob/fb94b83/whatwg/idl/payment-method-basic-card.idl Build: https://travis-ci.org/tidoust/reffy-reports/builds/431349655 -- wpt-commits: a515ab78d1dcb02899e5605421dd39f74218c474 wpt-pr: 13097 --- .../tests/interfaces/payment-method-basic-card.idl | 33 +++++++++++++++------- 1 file changed, 23 insertions(+), 10 deletions(-) diff --git a/testing/web-platform/tests/interfaces/payment-method-basic-card.idl b/testing/web-platform/tests/interfaces/payment-method-basic-card.idl index 00d6ad1f0a28..2019aa116693 100644 --- a/testing/web-platform/tests/interfaces/payment-method-basic-card.idl +++ b/testing/web-platform/tests/interfaces/payment-method-basic-card.idl @@ -4,17 +4,30 @@ // Source: Payment Method: Basic Card (https://w3c.github.io/payment-method-basic-card/) dictionary BasicCardRequest { - sequence supportedNetworks; - sequence supportedTypes; - }; + sequence supportedNetworks; + sequence supportedTypes; +}; + +dictionary BasicCardChangeDetails { + PaymentAddress? billingAddress; +}; enum BasicCardType { "credit", "debit", "prepaid" }; dictionary BasicCardResponse { - required DOMString cardNumber; - DOMString cardholderName; - DOMString cardSecurityCode; - DOMString expiryMonth; - DOMString expiryYear; - PaymentAddress? billingAddress; - }; + required DOMString cardNumber; + DOMString cardholderName; + DOMString cardSecurityCode; + DOMString expiryMonth; + DOMString expiryYear; + PaymentAddress? billingAddress; +}; + +dictionary BasicCardErrors { + DOMString cardNumber; + DOMString cardholderName; + DOMString cardSecurityCode; + DOMString expiryMonth; + DOMString expiryYear; + AddressErrors billingAddress; +}; -- 2.11.4.GIT