https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 8d877aacda3215c8ef53f1bb787c7c1d1b5d2fe5 authored by Fredrik Söderquist on 07 November 2018, 09:00:38 UTC
Recognize 'optimizespeed' and 'optimizequality' for 'image-rendering'
Tip revision: 8d877aa
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