tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

fedcm-manifest-not-in-list.https.html (875B)


      1 <!DOCTYPE html>
      2 <title>Federated Credential Management API network request tests.</title>
      3 <link rel="help" href="https://fedidcg.github.io/FedCM">
      4 <script src="/resources/testharness.js"></script>
      5 <script src="/resources/testharnessreport.js"></script>
      6 <script src="/resources/testdriver.js"></script>
      7 <script src="/resources/testdriver-vendor.js"></script>
      8 
      9 <script type="module">
     10 import {alt_request_options_with_mediation_required,
     11        fedcm_test,
     12        fedcm_get_and_select_first_account} from './support/fedcm-helper.sub.js';
     13 
     14 fedcm_test(async t => {
     15  let test_options = alt_request_options_with_mediation_required('manifest-not-in-list.json');
     16  const cred = fedcm_get_and_select_first_account(t, test_options);
     17  return promise_rejects_dom(t, 'NetworkError', cred);
     18 }, 'Test that the promise is rejected if the manifest is not in the manifest list');
     19 </script>