https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 2d080f1a7dd986dcd3f33a7676d30f367217d988 authored by Eric Willigers on 03 October 2017, 02:21:05 UTC
CSS Motion Path: begin path at offset-position
Tip revision: 2d080f1
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