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
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