diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /testing/web-platform/tests/payment-request/resources | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/payment-request/resources')
3 files changed, 40 insertions, 0 deletions
diff --git a/testing/web-platform/tests/payment-request/resources/delegate-request-subframe.sub.html b/testing/web-platform/tests/payment-request/resources/delegate-request-subframe.sub.html new file mode 100644 index 0000000000..aeda1f00d4 --- /dev/null +++ b/testing/web-platform/tests/payment-request/resources/delegate-request-subframe.sub.html @@ -0,0 +1,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> diff --git a/testing/web-platform/tests/payment-request/resources/page1.html b/testing/web-platform/tests/payment-request/resources/page1.html new file mode 100644 index 0000000000..7fc080d380 --- /dev/null +++ b/testing/web-platform/tests/payment-request/resources/page1.html @@ -0,0 +1 @@ +<meta charset="utf-8"> diff --git a/testing/web-platform/tests/payment-request/resources/page2.html b/testing/web-platform/tests/payment-request/resources/page2.html new file mode 100644 index 0000000000..7fc080d380 --- /dev/null +++ b/testing/web-platform/tests/payment-request/resources/page2.html @@ -0,0 +1 @@ +<meta charset="utf-8"> |