blob: 1eb2ba3b1e750b261b2ae71fbf6172c624503cb2 (
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
|
<!DOCTYPE html>
<meta charset="utf-8">
<title>Conditional Mediation 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>
<script src=helpers.js></script>
<body></body>
<script>
"use strict";
// Test that conditional mediation is supported.
virtualAuthenticatorPromiseTest(async t => {
assert_own_property(window.PublicKeyCredential, "isConditionalMediationAvailable");
assert_true(await window.PublicKeyCredential.isConditionalMediationAvailable());
}, {
protocol: "ctap2",
hasResidentKey: true,
hasUserVerification: true,
transport: "internal",
}, "Conditional mediation supported");
</script>
|