blob: 841880ef94fd01504f4aa8c4b4b32b33652db2dc [file] [log] [blame] [edit]
<!doctype html>
<title>PaymentRequest &lt;iframe allowpaymentrequest> basic</title>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<iframe id="iframe" allowpaymentrequest></iframe>
<script>
async_test((t) => {
const paymentArgs = [[{supportedMethods: ['foo']}], {total: {label: 'label', amount: {currency: 'USD', value: '5.00'}}}];
onload = t.step_func_done(() => {
new window[0].PaymentRequest(...paymentArgs);
});
});
</script>