Index: third_party/WebKit/LayoutTests/payments/resources/payment-request-in-iframe-nested-expect-success.html |
diff --git a/third_party/WebKit/LayoutTests/payments/resources/payment-request-in-iframe-nested-expect-success.html b/third_party/WebKit/LayoutTests/payments/resources/payment-request-in-iframe-nested-expect-success.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..a3ed917a831fc5b954c6d26fe0dfc842b1bc39f7 |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/payments/resources/payment-request-in-iframe-nested-expect-success.html |
@@ -0,0 +1,14 @@ |
+<!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> |