Upstream version 11.40.271.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / bluetooth / idl-BluetoothDiscovery.html
1 <!DOCTYPE html>
2 <script src="../resources/testharness.js"></script>
3 <script src="../resources/testharnessreport.js"></script>
4 <script>
5 test(function() {
6   assert_throws(null, function() { new BluetoothDiscovery(); },
7                 'the constructor should not be callable with "new"');
8   assert_throws(null, function() { BluetoothDiscovery(); },
9                 'the constructor should not be callable');
10 }, 'BluetoothDiscovery IDL test');
11 </script>