diff --git a/index.html b/index.html index 8c8ee10..a308cff 100644 --- a/index.html +++ b/index.html @@ -1192,6 +1192,7 @@
+ This method is used by the payment handler to show a custom UI to + the user. When called, it runs the show payment UI + algorithm. +
+
+ [SecureContxt, Exposed=Window]
+ interface PaymentHandlerContainer {
+ readonly attribute object? data;
+ void respondWith(PaymentHandlerResponse response);
+ };
+
+ partial interface Navigator {
+ [SecureContext, SameObject] readonly attribute PaymentHandlerContainer paymentHandler;
+ };
+
+ + The data attribute returns + [[\paymentHandlerRequestData]]. +
++ This method is used by the associated payment handler window to + provide a PaymentHandlerResponse to the associated payment + handler. When called, this method sets the user agent's + payment handler response data to the response + argument. +
+about:blank, return a
+ Promise rejected with a TypeError.
+ undefined.
+