https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 374f409cd811fb34b5dc9912ac8fbbf5ff0ff3af authored by Darwin Huang on 22 December 2018, 17:56:00 UTC
Async Clipboard: ReadImage/WriteImage Proof of Concept (experimental).
Tip revision: 374f409
payment-request-event-constructor.https.html
<!doctype html>
<meta charset="utf-8">
<title>Test for PaymentRequestEvent Constructor</title>
<link rel="help" href="https://w3c.github.io/payment-handler/#the-paymentrequestevent">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/service-workers/service-worker/resources/test-helpers.sub.js"></script>
<script>

test(() => {
  assert_false('PaymentRequestEvent' in window);
}, 'PaymentRequestEvent constructor must not be exposed in window');

</script>
back to top