| Index: third_party/WebKit/LayoutTests/bluetooth/getCharacteristic/characteristic-not-found.html
|
| diff --git a/third_party/WebKit/LayoutTests/bluetooth/getCharacteristic/characteristic-not-found.html b/third_party/WebKit/LayoutTests/bluetooth/getCharacteristic/characteristic-not-found.html
|
| deleted file mode 100644
|
| index 8d74896237fc16fecec0119d57b41bf629c9dfe2..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/bluetooth/getCharacteristic/characteristic-not-found.html
|
| +++ /dev/null
|
| @@ -1,20 +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: ['generic_access']}))
|
| - .then(device => device.gatt.connect())
|
| - .then(gattServer => gattServer.getPrimaryService('generic_access'))
|
| - .then(service => assert_promise_rejects_with_message(
|
| - service.getCharacteristic('battery_level'),
|
| - new DOMException(
|
| - 'No Characteristics with specified UUID found in Service.',
|
| - 'NotFoundError')));
|
| -}, 'Request for absent characteristic. Reject with NotFoundError.');
|
| -</script>
|
|
|