idl-NavigatorBluetooth.https.window.js (389B)
1 // META: script=/resources/testdriver.js?feature=bidi 2 // META: script=/resources/testdriver-vendor.js 3 'use strict'; 4 const test_desc = '[SameObject] test for navigator.bluetooth'; 5 6 test(() => { 7 assert_true('bluetooth' in navigator, 'navigator.bluetooth exists.'); 8 }, 'navigator.bluetooth IDL test'); 9 10 test(() => { 11 assert_equals(navigator.bluetooth, navigator.bluetooth); 12 }, test_desc);