Sign in
webkit
/
WebKit
/
9487039c43150a49ee249911cfffbf6b2aea9e49
/
.
/
Tools
/
TestWebKitAPI
/
Tests
/
WebKitCocoa
/
web-authentication-get-assertion.html
blob: 2de2e927c0a54154967df5c49a5fda0df00518cd [
file
] [
log
] [
blame
]
<input
type
=
"text"
id
=
"input"
>
<script>
if
(
window
.
internals
)
internals
.
withUserGesture
(()
=>
{
input
.
focus
();
});
const
options
=
{
publicKey
:
{
challenge
:
new
Uint8Array
(
16
),
timeout
:
1
}
};
navigator
.
credentials
.
get
(
options
);
</script>