mirror of
https://github.com/servo/servo.git
synced 2025-10-09 21:10:19 +01:00
12 lines
376 B
JavaScript
12 lines
376 B
JavaScript
// META: script=/resources/testdriver.js
|
|
// META: script=/resources/testdriver-vendor.js
|
|
'use strict';
|
|
const test_desc = '[SameObject] test for navigator.bluetooth';
|
|
|
|
test(() => {
|
|
assert_true('bluetooth' in navigator, 'navigator.bluetooth exists.');
|
|
}, 'navigator.bluetooth IDL test');
|
|
|
|
test(() => {
|
|
assert_equals(navigator.bluetooth, navigator.bluetooth);
|
|
}, test_desc);
|