[w3c/browser-payment-api] Unclear what happens when multiple PRs are created (#462)

Unless I missed it, it's unclear in the spec what happens when:

```
const pr1 = new PaymentRequest(methods, details, options);
const pr2 = new PaymentRequest(methods, details, options);
p1.show();
p2.show();
```

Should p2 reject? or should it wait till p1 finishes? 

-- 
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/browser-payment-api/issues/462

Received on Friday, 17 March 2017 07:21:11 UTC