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