mirror of
https://github.com/servo/servo.git
synced 2025-08-24 22:58:21 +01:00
Update web-platform-tests to revision 7c50c216081d6ea3c9afe553ee7b64534020a1b2
This commit is contained in:
parent
5063ac465b
commit
f9ee2396ab
254 changed files with 2043 additions and 1285 deletions
|
@ -18,6 +18,7 @@ interface PaymentRequest : EventTarget {
|
|||
readonly attribute DOMString? shippingOption;
|
||||
readonly attribute PaymentShippingType? shippingType;
|
||||
|
||||
attribute EventHandler onmerchantvalidation;
|
||||
attribute EventHandler onshippingaddresschange;
|
||||
attribute EventHandler onshippingoptionchange;
|
||||
attribute EventHandler onpaymentmethodchange;
|
||||
|
@ -178,6 +179,17 @@ dictionary PayerErrorFields {
|
|||
DOMString phone;
|
||||
};
|
||||
|
||||
[Constructor(DOMString type, optional MerchantValidationEventInit eventInitDict),
|
||||
SecureContext, Exposed=Window]
|
||||
interface MerchantValidationEvent : Event {
|
||||
readonly attribute USVString validationURL;
|
||||
void complete(Promise<any> merchantSessionPromise);
|
||||
};
|
||||
|
||||
dictionary MerchantValidationEventInit : EventInit {
|
||||
USVString validationURL = "";
|
||||
};
|
||||
|
||||
[Constructor(DOMString type, optional PaymentMethodChangeEventInit eventInitDict), SecureContext, Exposed=Window]
|
||||
interface PaymentMethodChangeEvent : PaymentRequestUpdateEvent {
|
||||
readonly attribute DOMString methodName;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue