зеркало из https://github.com/mozilla/gecko-dev.git
53 строки
1.9 KiB
HTML
53 строки
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<meta charset=utf-8>
|
|
<head>
|
|
<title>Test for W3C Web Authentication isUserVerifyingPlatformAuthenticatorAvailable</title>
|
|
<script type="text/javascript" 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 isUserVerifyingPlatformAuthenticatorAvailable</h1>
|
|
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1309284">Mozilla Bug 1309284</a>
|
|
|
|
<script class="testbody" type="text/javascript">
|
|
"use strict";
|
|
|
|
// Execute the full-scope test
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
SpecialPowers.pushPrefEnv({"set": [["security.webauth.webauthn", true],
|
|
["security.webauth.webauthn_enable_softtoken", true],
|
|
["security.webauth.webauthn_enable_usbtoken", false]]},
|
|
function() {
|
|
// This test ensures that isUserVerifyingPlatformAuthenticatorAvailable()
|
|
// is a callable method, but we currently can't test that it works in an
|
|
// automated way. If it resolves to false, per spec, we SHOULD wait
|
|
// ~10 minutes before resolving.
|
|
let p1 = PublicKeyCredential.isUserVerifyingPlatformAuthenticatorAvailable()
|
|
.then(function(aResult) {
|
|
ok(false, "We shouldn't get here.");
|
|
})
|
|
.catch(function(aProblem) {
|
|
ok(false, "Problem encountered: " + aProblem);
|
|
});
|
|
|
|
// Finish on the next tick.
|
|
let p2 = Promise.resolve();
|
|
|
|
Promise.race([p1, p2]).then(function() {
|
|
ok(true, "isUserVerifyingPlatformAuthenticatorAvailable() is callable");
|
|
SimpleTest.finish();
|
|
});
|
|
});
|
|
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|