Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 2 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /fedcm/fedcm-multi-idp/fedcm-multi-idp-context.https.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>Federated Credential Management API multi IDP context tests.</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/testdriver.js"></script>
<script src="/resources/testdriver-vendor.js"></script>
<body>
<script type="module">
import {request_options_with_two_idps,
fedcm_get_title_promise,
fedcm_test,
fedcm_select_account_promise} from '../support/fedcm-helper.sub.js';
fedcm_test(async t => {
const p = navigator.credentials.get(request_options_with_two_idps());
const result = await fedcm_get_title_promise(t);
assert_true(result.title.toLowerCase().includes('sign in'));
fedcm_select_account_promise(t, 0);
return p;
}, "FedCM multi IDP call defaults to 'signin' context.");
fedcm_test(async t => {
const options = request_options_with_two_idps();
options.identity.context = "signup";
const p = navigator.credentials.get(options);
const result = await fedcm_get_title_promise(t);
assert_true(result.title.toLowerCase().includes('sign up'));
fedcm_select_account_promise(t, 0);
return p;
}, "FedCM multi IDP with non-default context.");
</script>