Index: LayoutTests/bluetooth/idl-Bluetooth.html |
diff --git a/LayoutTests/bluetooth/idl-Bluetooth.html b/LayoutTests/bluetooth/idl-Bluetooth.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..8ece688045dcac4cbad781d82f3658a13156c261 |
--- /dev/null |
+++ b/LayoutTests/bluetooth/idl-Bluetooth.html |
@@ -0,0 +1,11 @@ |
+<!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 IDL test'); |
+</script> |