https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 9ac1564951a43a313e49188ee24c90f330215b2e authored by François Beaufort on 06 December 2018, 10:51:49 UTC
[Picture-in-Picture] Don't require user gesture if capturing user media
Tip revision: 9ac1564
historical.https.html
<!doctype html>
<meta charset=utf-8>
<title>Historical Basic Card Changes</title>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<script>
// https://github.com/w3c/payment-method-basic-card/pull/62
test(() => {
  try {
    new PaymentRequest(
      [
        {
          supportedMethods: "basic-card",
          supportedTypes: [
            "this was an enum value once - so this would have thrown",
          ],
        },
      ],
      { total: { label: "bar", amount: { currency: "BAZ", value: "0" } } }
    );
  } catch (err) {
    assert_unreached("Unexpected error");
  }
}, "supportedTypes and BasicCardType enum were removed from the spec");
</script>
back to top