summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/credential-management/fedcm-multi-idp/single-get-during-onload.https.html
blob: 17939d2d9353fa255c746729f14a37c7383d1814 (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
<!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>

<body>

<script type="module">
import {default_request_options, set_fedcm_cookie} from '../support/fedcm-helper.sub.js';

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

</script>