summaryrefslogtreecommitdiffstats
path: root/dom/webauthn/tests/get_assertion_dead_object.html
blob: e7de9d3deb00900290ad38bfcb912e94ec8e7fc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
</head>
<body>
<script type="text/javascript">
  window.addEventListener('load', function() {
    let o = [];
    o[0] = window.navigator;
    document.writeln('');
    // Since the USB token is enabled by default, this will pop up a notification that the
    // user can insert/interact with it. Since this is just a test, this won't happen. The
    // request will eventually time out.
    // Unfortunately the minimum timeout is 15 seconds.
    o[0].credentials.get({ publicKey: { challenge: new Uint8Array(128), timeout: 15000 } });
    o.forEach((n, i) => o[i] = null);
  });
</script>
</body>
</html>