Skip to content

Commit

Permalink
Update feature detection for WebAuthn
Browse files Browse the repository at this point in the history
  • Loading branch information
dstorey authored May 3, 2018
1 parent d03248e commit 6d43e36
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 6d43e36

Please sign in to comment.