Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(108)

Unified Diff: third_party/WebKit/LayoutTests/http/tests/feature-policy/resources/feature-policy-payment-enabled.html

Issue 2618383002: Initial implementation for feature policy - PaymentRequest (Closed)
Patch Set: Codereivew: made assert_unreached Error message more explicit in payment-disabled.php test Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/http/tests/feature-policy/resources/feature-policy-payment-enabled.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/feature-policy/resources/feature-policy-payment-enabled.html b/third_party/WebKit/LayoutTests/http/tests/feature-policy/resources/feature-policy-payment-enabled.html
new file mode 100644
index 0000000000000000000000000000000000000000..ee07de1b6679710c119e4436b8614bbf094583e3
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/http/tests/feature-policy/resources/feature-policy-payment-enabled.html
@@ -0,0 +1,19 @@
+<!DOCTYPE html>
+<head>
+ <title>Feature-Policy PaymentRequest Enabled</title>
+ <script src="/resources/testharness.js"></script>
+ <script src="/resources/testharnessreport.js"></script>
+</head>
+<script>
+ test(function() {
+ var supportedInstruments = [ { supportedMethods: [ 'visa' ] } ];
+ var details = {
+ total: { label: 'Test', amount: { currency: 'USD', value: '5.00' } }
+ };
+ try {
+ new PaymentRequest(supportedInstruments, details);
+ } catch (e) {
+ assert_unreached('PaymentRequest should be enabled by FeaturePolicy');
+ }
+ }, 'Any iframes may construct PaymentRequest when enabled.');
+</script>

Powered by Google App Engine
This is Rietveld 408576698