| Index: third_party/WebKit/LayoutTests/bluetooth/getPrimaryService/service-not-found.html
|
| diff --git a/third_party/WebKit/LayoutTests/bluetooth/getPrimaryService/service-not-found.html b/third_party/WebKit/LayoutTests/bluetooth/getPrimaryService/service-not-found.html
|
| deleted file mode 100644
|
| index 6c6f85e5d29cdb9d39979144e271a22dd77bfe9d..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/bluetooth/getPrimaryService/service-not-found.html
|
| +++ /dev/null
|
| @@ -1,18 +0,0 @@
|
| -<!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('HeartRateAdapter')
|
| - .then(() => requestDeviceWithKeyDown({
|
| - filters: [{services: ['heart_rate']}],
|
| - optionalServices: ['glucose']}))
|
| - .then(device => device.gatt.connect())
|
| - .then(gattServer => assert_promise_rejects_with_message(
|
| - gattServer.getPrimaryService('glucose'),
|
| - new DOMException('No Services with specified UUID found in Device.',
|
| - 'NotFoundError')));
|
| -}, 'Request for absent service. Reject with NotFoundError.');
|
| -</script>
|
|
|