blob: 881bf2ba6123d2c439a7df886a9197208f1ea746 [file] [log] [blame]
<!DOCTYPE html>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<script>
test(function() {
assert_throws(null, function() { new Bluetooth(); },
'the constructor should not be callable with "new"');
assert_throws(null, function() { Bluetooth(); },
'the constructor should not be callable');
// Bluetooth implements BluetoothDiscovery;
assert_true('requestDevice' in navigator.bluetooth);
}, 'Bluetooth IDL test');
</script>