Re: [w3c/webpayments-payment-apps-api] (Promise<PaymentResponse> or PaymentResponse) is invalid Web IDL. (#71)

@ianbjacobs -- Sure, this looks fine. The initial specification was done to be congruent with [the ServiceWorker spec at the time](https://www.w3.org/TR/2015/WD-service-workers-20150625/):

```webidl
[Constructor(DOMString type, optional FetchEventInit eventInitDict), Exposed=ServiceWorker]
interface FetchEvent : ExtendableEvent {
  [SameObject] readonly attribute Request request;
  [SameObject] readonly attribute Client client;
  readonly attribute boolean isReload;

  void respondWith((Response or Promise<Response>) r);
};
```

However, I see that the most recent version of that document has dropped the "or" construct, so I'm happy doing so as well.

I'd merge this PR, but the IPR check is failing. can we get @romandev's account fixed up?

-- 
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/webpayments-payment-apps-api/pull/71#issuecomment-262300347

Received on Tuesday, 22 November 2016 17:05:31 UTC