summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/payment-request/resources/delegate-request-subframe.sub.html
blob: aeda1f00d4feb5cc34cbbcd253dc905dd00e9318 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<title>Payment request delegation test: subframe</title>

<script>
  function reportResult(msg) {
      window.top.postMessage({"type": "result", "result": msg}, "*");
  }

  async function requestPayment(e) {
      const supportedMethods = [{
          supportedMethods: "https://{{hosts[][nonexistent]}}/payment-request"
      }];
      const details = {
          total: { label: "Test", amount: { currency: "CAD", value: "1.00" } }
      };
      const request = new PaymentRequest(supportedMethods, details);

      request.show().catch(e => {
          if (e.name == "SecurityError") {
              reportResult("failure");
          } else if (e.name == "NotSupportedError") {
              // Because we used a non-existent url in supportedMethod aboves, this error message
              // means all checks required for this test (i.e. user activation check and payment
              // delegation check) have passed successfully.
              reportResult("success");
          } else {
              reportResult("unexpected");
          }
      });
  }

  window.addEventListener("message", e => {
      if (e.data.type == "make-payment-request")
          requestPayment();
  });

  window.top.postMessage({"type": "subframe-loaded"}, "*");
</script>