summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/credential-management/fedcm-multi-idp/multiple-gets-after-onload.https.html
blob: 1b5d744e8f60fffdc44d720d7b0a6233f181b531 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<title>Federated Credential Management API multi IDP multiple gets after onload test.</title>
<link rel="help" href="https://fedidcg.github.io/FedCM">
<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 {set_fedcm_cookie,
        set_alt_fedcm_cookie,
        request_options_with_mediation_required,
        alt_request_options_with_mediation_required,
        fedcm_select_account_promise} from '../support/fedcm-helper.sub.js';

let cookies_promise = Promise.all([set_fedcm_cookie(), set_alt_fedcm_cookie()]);
const window_loaded = new Promise(resolve => {
  window.addEventListener('load', () => {
    resolve();
  });
});

promise_test(async t => {
  await Promise.all([cookies_promise, window_loaded]);
  const first_cred = navigator.credentials.get(request_options_with_mediation_required());
  const second_cred = navigator.credentials.get(alt_request_options_with_mediation_required());

  // Select first account from the first get() call.
  await fedcm_select_account_promise(t, 0);
  // NetworkError is returned when another IDP is selected.
  await promise_rejects_dom(t, 'NetworkError', second_cred);
  const first = await first_cred;
  assert_equals(first.token, "token");
}, "No `get` calls before or during onload, multiple `get` calls after onload in the same task are allowed.");

</script>