mirror of
https://github.com/servo/servo.git
synced 2025-08-12 17:05:33 +01:00
Update web-platform-tests to revision 3d117ae1266e6bd039a3a1ab92b27e82c3ccc92d
This commit is contained in:
parent
647796ede6
commit
20a08918d9
132 changed files with 3012 additions and 689 deletions
|
@ -4,17 +4,30 @@
|
|||
// Source: Payment Method: Basic Card (https://w3c.github.io/payment-method-basic-card/)
|
||||
|
||||
dictionary BasicCardRequest {
|
||||
sequence<DOMString> supportedNetworks;
|
||||
sequence<BasicCardType> supportedTypes;
|
||||
};
|
||||
sequence<DOMString> supportedNetworks;
|
||||
sequence<BasicCardType> 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;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue