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

16 lines
251 B
HTML

<script>
function bluetoothBlocked() {
let options = {
filters: [
{namePrefix: 'Prefix'}
]
}
try {
navigator.bluetooth.requestDevice(options).resolve('Waiting');
} catch (e) {
return true;
}
return false;
}
</script>