| Index: third_party/WebKit/LayoutTests/bluetooth/getCharacteristics/blocklisted-characteristics.html
|
| diff --git a/third_party/WebKit/LayoutTests/bluetooth/getCharacteristics/blocklisted-characteristics.html b/third_party/WebKit/LayoutTests/bluetooth/getCharacteristics/blocklisted-characteristics.html
|
| deleted file mode 100644
|
| index ea01aceba1b12b07cf9f7a9c0d5ca36e19a58ca7..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/bluetooth/getCharacteristics/blocklisted-characteristics.html
|
| +++ /dev/null
|
| @@ -1,19 +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('BlocklistTestAdapter')
|
| - .then(() => requestDeviceWithKeyDown({
|
| - filters: [{services: ['device_information']}]}))
|
| - .then(device => device.gatt.connect())
|
| - .then(gattServer => gattServer.getPrimaryService('device_information'))
|
| - .then(service => assert_promise_rejects_with_message(
|
| - service.getCharacteristics(),
|
| - new DOMException('No Characteristics found in service.',
|
| - 'NotFoundError')));
|
| -}, 'The Device Information service is composed of blocklisted ' +
|
| - 'characteristics so we shouldn\'t find any.');
|
| -</script>
|
|
|