summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/credential-management/fedcm-multi-idp/single-get-during-onload.https.html
blob: 832565744d4629aac869805fef10d135c82a9479 (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
<!DOCTYPE html>
<title>Federated Credential Management API multi IDP single get during 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 {request_options_with_mediation_required,
        set_fedcm_cookie,
        fedcm_get_and_select_first_account} from '../support/fedcm-helper.sub.js';

promise_test(async t => {
  const window_loaded = new Promise(resolve => {
    window.addEventListener('load', async () => {
      await set_fedcm_cookie();
      const first_cred = fedcm_get_and_select_first_account(t,
          request_options_with_mediation_required());
      const cred = await first_cred;
      assert_equals(cred.token, "token");
      resolve();
    });
  });
  await window_loaded;
}, "Single `get` call during onload is allowed.");

</script>