mirror of
https://github.com/servo/servo.git
synced 2025-07-03 05:23:38 +01:00
16 lines
645 B
HTML
16 lines
645 B
HTML
<!DOCTYPE html>
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<script src="/resources/testdriver.js"></script>
|
|
<script src="/resources/testdriver-vendor.js"></script>
|
|
<script src="/bluetooth/resources/bluetooth-helpers.js"></script>
|
|
<script>
|
|
'use strict';
|
|
const test_desc = 'Device with empty name and no UUIDs nearby. Should be ' +
|
|
'found if acceptAllDevices is true.';
|
|
|
|
bluetooth_test(() => setUpPreconnectedDevice({name: ''})
|
|
.then(() => requestDeviceWithTrustedClick({acceptAllDevices: true}))
|
|
.then(device => assert_equals(device.name, '')),
|
|
test_desc);
|
|
</script>
|