blob: a3ed917a831fc5b954c6d26fe0dfc842b1bc39f7 [file] [log] [blame]
<!DOCTYPE html>
<meta charset="utf-8">
<title>Test for PaymentRequest in an iframe</title>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<iframe allowpaymentrequest srcdoc="
<!DOCTYPE html>
<meta charset='utf-8'>
<script>
window.top.test(function() {
new PaymentRequest([{supportedMethods: ['foo']}], {total: {label: 'label', amount: {currency: 'USD', value: '5.00'}}});
}, 'Scripts in the iframe element with allowpaymentrequest content attribute are allowed to make payment requests.');
</script>
"></iframe>