- From: gogerald <notifications@github.com>
- Date: Thu, 25 May 2017 08:57:40 -0700
- To: w3c/payment-handler <payment-handler@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Thursday, 25 May 2017 15:58:15 UTC
is
[Exposed=ServiceWorker]
interface PaymentRequestEvent : ExtendableEvent {
...
Promise<WindowClient> openWindow(USVString url);
...
};
should be
[Exposed=ServiceWorker]
interface PaymentRequestEvent : ExtendableEvent {
...
Promise<WindowClient?> openWindow(USVString url);
...
};
to allow return null
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/payment-handler/issues/163
Received on Thursday, 25 May 2017 15:58:15 UTC