mirror of
https://github.com/servo/servo.git
synced 2025-08-10 16:05:43 +01:00
Update web-platform-tests to revision 8a2ceb5f18911302b7a5c1cd2791f4ab50ad4326
This commit is contained in:
parent
462c272380
commit
1f531f66ea
5377 changed files with 174916 additions and 84369 deletions
114
tests/wpt/web-platform-tests/interfaces/payment-request.idl
Normal file
114
tests/wpt/web-platform-tests/interfaces/payment-request.idl
Normal file
|
@ -0,0 +1,114 @@
|
|||
[Constructor(sequence<PaymentMethodData> methodData, PaymentDetailsInit details, optional PaymentOptions options),
|
||||
SecureContext,
|
||||
Exposed=Window]
|
||||
interface PaymentRequest : EventTarget {
|
||||
Promise<PaymentResponse> show();
|
||||
Promise<void> abort();
|
||||
Promise<boolean> canMakePayment();
|
||||
|
||||
readonly attribute DOMString id;
|
||||
readonly attribute PaymentAddress? shippingAddress;
|
||||
readonly attribute DOMString? shippingOption;
|
||||
readonly attribute PaymentShippingType? shippingType;
|
||||
|
||||
attribute EventHandler onshippingaddresschange;
|
||||
|
||||
attribute EventHandler onshippingoptionchange;
|
||||
};
|
||||
dictionary PaymentMethodData {
|
||||
required DOMString supportedMethods;
|
||||
object data;
|
||||
};
|
||||
dictionary PaymentCurrencyAmount {
|
||||
required DOMString currency;
|
||||
required DOMString value;
|
||||
// Note: currencySystem is "at risk" of being removed!
|
||||
DOMString currencySystem = "urn:iso:std:iso:4217";
|
||||
};
|
||||
dictionary PaymentDetailsBase {
|
||||
sequence<PaymentItem> displayItems;
|
||||
sequence<PaymentShippingOption> shippingOptions;
|
||||
sequence<PaymentDetailsModifier> modifiers;
|
||||
};
|
||||
dictionary PaymentDetailsInit : PaymentDetailsBase {
|
||||
DOMString id;
|
||||
required PaymentItem total;
|
||||
};
|
||||
dictionary PaymentDetailsUpdate : PaymentDetailsBase {
|
||||
DOMString error;
|
||||
PaymentItem total;
|
||||
};
|
||||
dictionary PaymentDetailsModifier {
|
||||
required DOMString supportedMethods;
|
||||
PaymentItem total;
|
||||
sequence<PaymentItem> additionalDisplayItems;
|
||||
object data;
|
||||
};
|
||||
enum PaymentShippingType {
|
||||
"shipping",
|
||||
"delivery",
|
||||
"pickup"
|
||||
};
|
||||
dictionary PaymentOptions {
|
||||
boolean requestPayerName = false;
|
||||
boolean requestPayerEmail = false;
|
||||
boolean requestPayerPhone = false;
|
||||
boolean requestShipping = false;
|
||||
PaymentShippingType shippingType = "shipping";
|
||||
};
|
||||
dictionary PaymentItem {
|
||||
required DOMString label;
|
||||
required PaymentCurrencyAmount amount;
|
||||
boolean pending = false;
|
||||
};
|
||||
[SecureContext,
|
||||
Exposed=Window]
|
||||
interface PaymentAddress {
|
||||
[Default] object toJSON();
|
||||
readonly attribute DOMString country;
|
||||
readonly attribute FrozenArray<DOMString> addressLine;
|
||||
readonly attribute DOMString region;
|
||||
readonly attribute DOMString city;
|
||||
readonly attribute DOMString dependentLocality;
|
||||
readonly attribute DOMString postalCode;
|
||||
readonly attribute DOMString sortingCode;
|
||||
readonly attribute DOMString languageCode;
|
||||
readonly attribute DOMString organization;
|
||||
readonly attribute DOMString recipient;
|
||||
readonly attribute DOMString phone;
|
||||
};
|
||||
dictionary PaymentShippingOption {
|
||||
required DOMString id;
|
||||
required DOMString label;
|
||||
required PaymentCurrencyAmount amount;
|
||||
boolean selected = false;
|
||||
};
|
||||
enum PaymentComplete {
|
||||
"fail",
|
||||
"success",
|
||||
"unknown"
|
||||
};
|
||||
[SecureContext,
|
||||
Exposed=Window]
|
||||
interface PaymentResponse {
|
||||
[Default] object toJSON();
|
||||
|
||||
readonly attribute DOMString requestId;
|
||||
readonly attribute DOMString methodName;
|
||||
readonly attribute object details;
|
||||
readonly attribute PaymentAddress? shippingAddress;
|
||||
readonly attribute DOMString? shippingOption;
|
||||
readonly attribute DOMString? payerName;
|
||||
readonly attribute DOMString? payerEmail;
|
||||
readonly attribute DOMString? payerPhone;
|
||||
|
||||
Promise<void> complete(optional PaymentComplete result = "unknown");
|
||||
};
|
||||
[Constructor(DOMString type, optional PaymentRequestUpdateEventInit eventInitDict),
|
||||
SecureContext,
|
||||
Exposed=Window]
|
||||
interface PaymentRequestUpdateEvent : Event {
|
||||
void updateWith(Promise<PaymentDetailsUpdate> detailsPromise);
|
||||
};
|
||||
dictionary PaymentRequestUpdateEventInit : EventInit {
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue