fedcm-continue-on.https.html (911B)
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 <body> 10 11 <script type="module"> 12 import {fedcm_test, 13 request_options_with_mediation_required, 14 select_manifest, 15 fedcm_get_and_select_first_account} from '../support/fedcm-helper.sub.js'; 16 17 fedcm_test(async t => { 18 const options = request_options_with_mediation_required('manifest_with_continue_on.json'); 19 await select_manifest(t, options); 20 const cred = await fedcm_get_and_select_first_account(t, options); 21 assert_equals(cred.token, "account=1234"); 22 }, "continue_on and IdentityProvider.resolve work correctly."); 23 24 </script>