summaryrefslogtreecommitdiffstats
path: root/dom/webauthn/tests/test_webauthn_isexternalctap2securitykeysupported.html
blob: 33f367dc1969b8080ee7fdbf892d7a00113eb6ae (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
<!DOCTYPE html>
<meta charset=utf-8>
<head>
  <title>Test for W3C Web Authentication isExternalCTAP2SecurityKeySupported</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <script type="text/javascript" src="u2futil.js"></script>
  <script type="text/javascript" src="pkijs/common.js"></script>
  <script type="text/javascript" src="pkijs/asn1.js"></script>
  <script type="text/javascript" src="pkijs/x509_schema.js"></script>
  <script type="text/javascript" src="pkijs/x509_simpl.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>

<h1>Test for W3C Web Authentication isExternalCTAP2SecurityKeySupported</h1>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1526023">Mozilla Bug 1526023</a>

<script class="testbody" type="text/javascript">
"use strict";

// Execute the full-scope test
SimpleTest.waitForExplicitFinish();

add_task(async function test_external_key_support() {
  PublicKeyCredential.isExternalCTAP2SecurityKeySupported()
  .then(aResult => ok(true, `Should always return either true or false: ${aResult}`))
  .catch(aProblem => ok(false, `We shouldn't get here: ${aProblem}`))
});

</script>

</body>
</html>