blob: 62fc22c673d95abffe0349d4db047dae6f71f6b9 [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 BluetoothGATTRemoteServer(); },
'the constructor should not be callable with "new"');
assert_throws(null, function() { BluetoothGATTRemoteServer(); },
'the constructor should not be callable');
}, 'BluetoothGATTRemoteServer IDL test');
</script>