Files
brave-core/test/data/credentialsget.html
T

11 lines
186 B
HTML

<script>
var result = false;
navigator.credentials.get().then(function(data){
result = data;
});
function credentialsGetBlocked() {
return result == null;
}
</script>