Skip to content
This repository has been archived by the owner on Apr 11, 2024. It is now read-only.

Commit

Permalink
Merge pull request #542 from dstorey/patch-1
Browse files Browse the repository at this point in the history
Update feature detection for WebAuthn
  • Loading branch information
NielsLeenheer authored May 12, 2018
2 parents d2ce9c3 + 6d43e36 commit 47687ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/9/engine.js
Original file line number Diff line number Diff line change
Expand Up @@ -2336,7 +2336,7 @@ Test9 = (function () {
function (results) {
results.addItem({
key: 'security.authentication',
passed: 'webauthn' in window ? YES : 'msCredentials' in window ? YES | OLD : NO
passed: 'PublicKeyCredential' in window ? YES : 'msCredentials' in window ? YES | OLD : NO
});
},

Expand Down

0 comments on commit 47687ab

Please sign in to comment.