summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/payment-method-basic-card/historical.https.html
blob: e24def172ad1235094526a010d8aed800626c8d5 (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
<!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>