https://github.com/web-platform-tests/wpt
Raw File
Tip revision: b02b86b8f65b9c71b213c091c4deda3cb486981b authored by Geoffrey Sneddon on 21 March 2018, 16:54:08 UTC
Fix #2669: Add alternate_hosts
Tip revision: b02b86b
feature-policy-payment.html
<script>
'use strict';

window.onload = function() {
  var supportedInstruments = [ { supportedMethods: [ 'visa' ] } ];
  var details = {
      total: { label: 'Test', amount: { currency: 'USD', value: '5.00' } }
  };
  try {
    new PaymentRequest(supportedInstruments, details);
    parent.postMessage({ enabled: true }, '*');
  } catch (e) {
    parent.postMessage({ enabled: false }, '*');
  }
}
</script>
back to top