| Index: third_party/WebKit/LayoutTests/bluetooth/requestDevice/acceptAllDevices/optional-services-missing.html
|
| diff --git a/third_party/WebKit/LayoutTests/bluetooth/requestDevice/acceptAllDevices/optional-services-missing.html b/third_party/WebKit/LayoutTests/bluetooth/requestDevice/acceptAllDevices/optional-services-missing.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..f1c028f4c853bfbd4904253a502220e387e32ea6
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/bluetooth/requestDevice/acceptAllDevices/optional-services-missing.html
|
| @@ -0,0 +1,20 @@
|
| +<!DOCTYPE html>
|
| +<script src="../../../resources/testharness.js"></script>
|
| +<script src="../../../resources/testharnessreport.js"></script>
|
| +<script src="../../../resources/bluetooth/bluetooth-helpers.js"></script>
|
| +<script>
|
| +'use strict';
|
| +promise_test(() => {
|
| + return setBluetoothFakeAdapter('TwoHeartRateServicesAdapter')
|
| + .then(() => requestDeviceWithKeyDown({acceptAllDevices: true}))
|
| + .then(device => device.gatt.connect())
|
| + .then(gattServer => assert_promise_rejects_with_message(
|
| + gattServer.getPrimaryServices(),
|
| + new DOMException(
|
| + 'Origin is not allowed to access any service. ' +
|
| + 'Tip: Add the service UUID to \'optionalServices\' in ' +
|
| + 'requestDevice() options. https://goo.gl/HxfxSQ',
|
| + 'SecurityError')));
|
| +}, 'requestDevice called with acceptAllDevices: true and with no ' +
|
| + 'optionalServices. Should not get access to any services.');
|
| +</script>
|
|
|