blob: 3da3f58c629211d0fc6131aa8fa79fb5e0201a88 [file] [log] [blame]
<input type="text" id="input">
<script>
if (window.internals) {
internals.setMockWebAuthenticationConfiguration({ silentFailure: true, nfc: { multiplePhysicalTags:true } });
internals.withUserGesture(() => { input.focus(); });
}
const options = {
publicKey: {
challenge: new Uint8Array(16),
timeout: 100,
}
};
navigator.credentials.get(options);
</script>