[w3c/payment-request] Merchant validation (#646)

We need a means to do merchant validation, as per:
https://developer.apple.com/documentation/applepayjs/providing_merchant_validation

However, this is "one and done" event, so it's a good candidate to be a promise. So, sketch:

```JS
const pr = new PaymentRequest();
// Still don't know what a website does with validationURL? 
const validationURL = await pr.validateMerchant(); 
await pr.show();  
```



-- 
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-request/issues/646

Received on Tuesday, 7 November 2017 20:36:49 UTC