v147 · Payments · demo

Capability Check

Calls PaymentRequest.getSecurePaymentConfirmationCapabilities() and shows the raw capabilities object your browser returns.

Ready — press the button to probe SPC capabilities.
// Chrome 147+
const caps = await PaymentRequest.getSecurePaymentConfirmationCapabilities();
// Returns an object with at least:
// {
//   paymentCredentials: true | false,  // can browser perform SPC auth?
//   optOut: true | false | null,       // can user opt out of SPC prompt?
//   ... (browser-specific fields)
// }

see also